From 82b7e243eb6a453c6b10c33b6bd2a9953ff7c377 Mon Sep 17 00:00:00 2001 From: Valere Date: Fri, 24 Apr 2026 12:10:24 +0200 Subject: [PATCH] This test does not need to run on both FF and chrome --- playwright/sfu-reconnect-bug.spec.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/playwright/sfu-reconnect-bug.spec.ts b/playwright/sfu-reconnect-bug.spec.ts index 78e89fe6..119ea869 100644 --- a/playwright/sfu-reconnect-bug.spec.ts +++ b/playwright/sfu-reconnect-bug.spec.ts @@ -10,6 +10,10 @@ import { expect, test } from "@playwright/test"; test("When creator left, avoid reconnect to the same SFU", async ({ browser, }) => { + test.skip( + ({ browserName }) => browserName === "firefox", + "Browser independent", + ); // Use reduce motion to disable animations that are making the tests a bit flaky const creatorContext = await browser.newContext({ reducedMotion: "reduce" }); const creatorPage = await creatorContext.newPage();