From 2f2bdfce5b46859b54f964110df17291636e7b68 Mon Sep 17 00:00:00 2001 From: Valere Date: Fri, 24 Apr 2026 12:32:41 +0200 Subject: [PATCH] fixup: wrong skip --- playwright/sfu-reconnect-bug.spec.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/playwright/sfu-reconnect-bug.spec.ts b/playwright/sfu-reconnect-bug.spec.ts index 119ea869..9be4a3ac 100644 --- a/playwright/sfu-reconnect-bug.spec.ts +++ b/playwright/sfu-reconnect-bug.spec.ts @@ -9,11 +9,9 @@ import { expect, test } from "@playwright/test"; test("When creator left, avoid reconnect to the same SFU", async ({ browser, + browserName, }) => { - test.skip( - ({ browserName }) => browserName === "firefox", - "Browser independent", - ); + test.skip(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();