Playing video doesn't work in Webkit on Windows

This commit is contained in:
Stephen Wade 2024-04-21 17:41:16 -04:00
parent f203624562
commit 364173fc02

View file

@ -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(`<video><source src="${server.PREFIX}/movie.mp4"/></video>`);
await page.waitForTimeout(1000);
});