From a548c5d59251d5625c1eb022855d56460e5789a4 Mon Sep 17 00:00:00 2001 From: fkwp Date: Fri, 30 May 2025 15:03:43 +0200 Subject: [PATCH] test.skip() does only skip the test call back but not the fiturex. Hence, disabling the whole test --- playwright/widget/simple-create.spec.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/playwright/widget/simple-create.spec.ts b/playwright/widget/simple-create.spec.ts index c8b97029..00d5c658 100644 --- a/playwright/widget/simple-create.spec.ts +++ b/playwright/widget/simple-create.spec.ts @@ -9,12 +9,13 @@ import { expect, test } from "@playwright/test"; import { widgetTest } from "../fixtures/widget-user.ts"; -widgetTest("Start a new call as widget", async ({ asWidget, browserName }) => { - test.skip( - browserName === "firefox", - "This test is not working on firefox, after hangup brooks is locked in a strange state with a blank widget", - ); +// Skip test, including Fixtures +widgetTest.skip( + ({ browserName }) => browserName === "firefox", + "This test is not working on firefox, after hangup brooks is locked in a strange state with a blank widget", +); +widgetTest("Start a new call as widget", async ({ asWidget, browserName }) => { test.slow(); // Triples the timeout const { brooks, whistler } = asWidget;