diff --git a/tests/library/capabilities.spec.ts b/tests/library/capabilities.spec.ts index 39d170f74f..e6bf4b5e03 100644 --- a/tests/library/capabilities.spec.ts +++ b/tests/library/capabilities.spec.ts @@ -126,7 +126,9 @@ it('should support webgl 2 @smoke', async ({ page, browserName, headless, isWind expect(hasWebGL2).toBe(true); }); -it('should not crash on page with mp4 @smoke', async ({ page, server }) => { +it('should not crash on page with mp4 @smoke', async ({ page, server, platform, browserName }) => { + it.fixme(browserName === 'webkit' && platform === 'win32', 'times out in setContent'); + await page.setContent(``); await page.waitForTimeout(1000); });