From 96ce6a2dc65b5af41cfb125f3997774936125460 Mon Sep 17 00:00:00 2001 From: Valere Date: Wed, 19 Mar 2025 09:22:07 +0100 Subject: [PATCH] ui test: Skip video visibility test on firefox --- playwright/errors.spec.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/playwright/errors.spec.ts b/playwright/errors.spec.ts index 9f3ad327..efceaf81 100644 --- a/playwright/errors.spec.ts +++ b/playwright/errors.spec.ts @@ -31,7 +31,14 @@ test("Should show error screen if fails to get JWT token", async ({ page }) => { await expect(page.getByText("OPEN_ID_ERROR")).toBeVisible(); }); -test("Should automatically retry non fatal JWT errors", async ({ page }) => { +test("Should automatically retry non fatal JWT errors", async ({ + page, + browserName, +}) => { + test.skip( + browserName === "firefox", + "The test to check the video visibility is not working in Firefox CI environment. looks like video is disabled?", + ); await page.goto("/"); await page.getByTestId("home_callName").click();