From 29f880153e3f8c9c438bc16bae8d7255ea5ec8c2 Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Wed, 25 May 2022 08:55:03 -0700 Subject: [PATCH] test: mark ff video tests as failing (#14406) --- tests/library/video.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/library/video.spec.ts b/tests/library/video.spec.ts index 9f083d38bf..f4a0638e3a 100644 --- a/tests/library/video.spec.ts +++ b/tests/library/video.spec.ts @@ -346,6 +346,7 @@ it.describe('screencast', () => { it.fixme(!headless, 'Fails on headed'); it.fixme(browserName === 'webkit' && platform === 'win32'); it.fixme(browserName === 'firefox' && trace === 'on', 'https://github.com/microsoft/playwright/issues/10060'); + it.fixme(browserName === 'firefox', 'https://github.com/microsoft/playwright/issues/14405'); const size = { width: 320, height: 240 }; // Set viewport equal to screencast frame size to avoid scaling. @@ -375,6 +376,7 @@ it.describe('screencast', () => { it('should work for popups', async ({ browser, server, browserName, trace }, testInfo) => { it.fixme(browserName === 'firefox' && trace === 'on', 'https://github.com/microsoft/playwright/issues/10060'); + it.fixme(browserName === 'firefox', 'https://github.com/microsoft/playwright/issues/14405'); const videosPath = testInfo.outputPath(''); const size = { width: 450, height: 240 }; const context = await browser.newContext({ @@ -691,6 +693,7 @@ it.describe('screencast', () => { }); it('should capture full viewport on hidpi', async ({ browserType, browserName, headless }, testInfo) => { + it.fixme(browserName === 'firefox', 'https://github.com/microsoft/playwright/issues/14405'); it.fail(browserName === 'firefox', 'The actual picture is smaller than video frame'); it.fail(browserName === 'chromium' && !headless, 'The square is not on the video'); const size = { width: 400, height: 400 };