Skip on Windows

This commit is contained in:
Yury Semikhatsky 2024-11-22 14:52:39 -08:00
parent 64639d91c4
commit b8783facf1

View file

@ -434,7 +434,8 @@ it('should not auto play audio', {
type: 'issue', type: 'issue',
description: 'https://github.com/microsoft/playwright/issues/33590' 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 page.route('**/*', async route => {
await route.fulfill({ await route.fulfill({
status: 200, status: 200,