From 05f24ace2b071e55dcfa100edbdba1b04a83f051 Mon Sep 17 00:00:00 2001 From: juancarmore Date: Thu, 17 Jul 2025 19:50:50 +0200 Subject: [PATCH] test(e2e): add leaveRoom call after iframe check in room functionality tests --- frontend/webcomponent/tests/e2e/core/room.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/webcomponent/tests/e2e/core/room.test.ts b/frontend/webcomponent/tests/e2e/core/room.test.ts index e4ec144..91f9a4e 100644 --- a/frontend/webcomponent/tests/e2e/core/room.test.ts +++ b/frontend/webcomponent/tests/e2e/core/room.test.ts @@ -88,6 +88,8 @@ test.describe('Room Functionality Tests', () => { return !!component?.shadowRoot?.querySelector('iframe'); }); expect(hasIframe).toBeTruthy(); + + await leaveRoom(page, 'moderator'); }); });