From 398a605d2c4e9918aa0a8cc21184ecf9c094f196 Mon Sep 17 00:00:00 2001 From: juancarmore Date: Wed, 24 Sep 2025 12:05:58 +0200 Subject: [PATCH] e2e-test: add wait timeout before leaving room in tests --- frontend/webcomponent/tests/e2e/core/room.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/webcomponent/tests/e2e/core/room.test.ts b/frontend/webcomponent/tests/e2e/core/room.test.ts index 03031de..08b44e3 100644 --- a/frontend/webcomponent/tests/e2e/core/room.test.ts +++ b/frontend/webcomponent/tests/e2e/core/room.test.ts @@ -276,6 +276,7 @@ test.describe('Room Functionality Tests', () => { fs.unlinkSync('after.png'); fs.unlinkSync('diff.png'); + await page.waitForTimeout(3000); await leaveRoom(page); }); });