From 923043a58c46ab90d022ff39de38b9c89eb1c585 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Wed, 9 Aug 2023 14:08:23 +0200 Subject: [PATCH] Fix tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- test/home/CallList-test.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/home/CallList-test.tsx b/test/home/CallList-test.tsx index a161960f..b2a1e5ec 100644 --- a/test/home/CallList-test.tsx +++ b/test/home/CallList-test.tsx @@ -34,7 +34,13 @@ describe("CallList", () => { it("should show room", async () => { const rooms = [ - { roomName: "Room #1", roomAlias: "#room-name:server.org" }, + { + roomName: "Room #1", + roomAlias: "#room-name:server.org", + room: { + roomId: "!roomId", + }, + }, ] as GroupCallRoom[]; const result = renderComponent(rooms);