Skip to content

Commit 96ce6a2

Browse files
committed
ui test: Skip video visibility test on firefox
1 parent 8c5f5b1 commit 96ce6a2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

playwright/errors.spec.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,14 @@ test("Should show error screen if fails to get JWT token", async ({ page }) => {
3131
await expect(page.getByText("OPEN_ID_ERROR")).toBeVisible();
3232
});
3333

34-
test("Should automatically retry non fatal JWT errors", async ({ page }) => {
34+
test("Should automatically retry non fatal JWT errors", async ({
35+
page,
36+
browserName,
37+
}) => {
38+
test.skip(
39+
browserName === "firefox",
40+
"The test to check the video visibility is not working in Firefox CI environment. looks like video is disabled?",
41+
);
3542
await page.goto("/");
3643

3744
await page.getByTestId("home_callName").click();

0 commit comments

Comments
 (0)