From b8783facf1773e9362f47a6667b26c82bf579359 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 22 Nov 2024 14:52:39 -0800 Subject: [PATCH] Skip on Windows --- tests/library/capabilities.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/library/capabilities.spec.ts b/tests/library/capabilities.spec.ts index 6a83689ced..7526359c20 100644 --- a/tests/library/capabilities.spec.ts +++ b/tests/library/capabilities.spec.ts @@ -434,7 +434,8 @@ it('should not auto play audio', { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/33590' } -}, async ({ page }) => { +}, async ({ page, browserName, isWindows }) => { + it.fixme(browserName === 'webkit' && isWindows); await page.route('**/*', async route => { await route.fulfill({ status: 200,