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
This commit is contained in:
Andrey Lushnikov 2022-01-10 04:56:50 -07:00 committed by GitHub
parent 1dbf1c287d
commit 5a325a5a1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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