From 202e06a16daa467edc9589db350fee0e60d7df8d Mon Sep 17 00:00:00 2001 From: Valere Date: Fri, 16 Jan 2026 17:41:32 +0100 Subject: [PATCH] skip FF --- playwright/spa-call-sticky.spec.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/playwright/spa-call-sticky.spec.ts b/playwright/spa-call-sticky.spec.ts index c69cfe3b..58e9c997 100644 --- a/playwright/spa-call-sticky.spec.ts +++ b/playwright/spa-call-sticky.spec.ts @@ -12,7 +12,13 @@ import { SpaHelpers } from "./spa-helpers"; test("One to One call using matrix rtc 2.0 aka sticky events", async ({ browser, page, + browserName, }) => { + test.skip( + browserName === "firefox", + "The is test is not working on firefox CI environment. No mic/audio device inputs so cam/mic are disabled", + ); + await page.goto("/"); await SpaHelpers.createCall(page, "John Doe", "HelloCall", true, "2_0");