From 5a325a5a1dc2dbdcfae75bc37d36c1c6f94b7cb1 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 10 Jan 2022 04:56:50 -0700 Subject: [PATCH] test(gardening): disable mp4 capabilities test on firefox (#11289) Firefox is unhappy with our mp4 file and crashes / moves to faulty state. Upstream bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1697004 --- tests/capabilities.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/capabilities.spec.ts b/tests/capabilities.spec.ts index 20e70304dd..4a743fdb26 100644 --- a/tests/capabilities.spec.ts +++ b/tests/capabilities.spec.ts @@ -119,6 +119,7 @@ it('should support webgl 2 #smoke', async ({ page, browserName, headless }) => { it('should not crash on page with mp4 #smoke', async ({ page, server, platform, browserName }) => { it.fixme(browserName === 'webkit' && platform === 'win32', 'https://github.com/microsoft/playwright/issues/11009, times out in setContent'); + it.fixme(browserName === 'firefox', 'https://bugzilla.mozilla.org/show_bug.cgi?id=1697004'); await page.setContent(``); await page.waitForTimeout(1000); });