From 364173fc02f4ad8527619f529887c393dee8d77c Mon Sep 17 00:00:00 2001 From: Stephen Wade Date: Sun, 21 Apr 2024 17:41:16 -0400 Subject: [PATCH] Playing video doesn't work in Webkit on Windows --- tests/library/capabilities.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); });