Skip to content

Commit a548c5d

Browse files
committed
test.skip() does only skip the test call back but not the fiturex. Hence, disabling the whole test
1 parent 08ab382 commit a548c5d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

playwright/widget/simple-create.spec.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ import { expect, test } from "@playwright/test";
99

1010
import { widgetTest } from "../fixtures/widget-user.ts";
1111

12-
widgetTest("Start a new call as widget", async ({ asWidget, browserName }) => {
13-
test.skip(
14-
browserName === "firefox",
15-
"This test is not working on firefox, after hangup brooks is locked in a strange state with a blank widget",
16-
);
12+
// Skip test, including Fixtures
13+
widgetTest.skip(
14+
({ browserName }) => browserName === "firefox",
15+
"This test is not working on firefox, after hangup brooks is locked in a strange state with a blank widget",
16+
);
1717

18+
widgetTest("Start a new call as widget", async ({ asWidget, browserName }) => {
1819
test.slow(); // Triples the timeout
1920

2021
const { brooks, whistler } = asWidget;

0 commit comments

Comments
 (0)