This test does not need to run on both FF and chrome

This commit is contained in:
Valere
2026-04-24 12:10:24 +02:00
parent 0d5c71bb4e
commit 82b7e243eb

View File

@@ -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();