From 873307a39df1221ece382508ef1b8aa49cca2cc5 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 9 Jun 2022 14:21:21 -0700 Subject: [PATCH] test(firefox): skip more video tests when tracing is on (#14768) --- tests/library/video.spec.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/library/video.spec.ts b/tests/library/video.spec.ts index c156f47c39..7b9bae4561 100644 --- a/tests/library/video.spec.ts +++ b/tests/library/video.spec.ts @@ -660,9 +660,10 @@ it.describe('screencast', () => { expect(files.length).toBe(1); }); - it('should capture full viewport', async ({ browserType, browserName, headless, isWindows }, testInfo) => { + it('should capture full viewport', async ({ browserType, browserName, headless, isWindows, trace }, testInfo) => { it.fixme(browserName === 'chromium' && !headless, 'The square is not on the video'); it.fixme(browserName === 'firefox' && isWindows, 'https://github.com/microsoft/playwright/issues/14405'); + it.fixme(browserName === 'firefox' && trace === 'on', 'https://github.com/microsoft/playwright/issues/10060'); const size = { width: 600, height: 400 }; const browser = await browserType.launch(); @@ -693,9 +694,10 @@ it.describe('screencast', () => { expectAll(pixels, almostRed); }); - it('should capture full viewport on hidpi', async ({ browserType, browserName, headless, isWindows }, testInfo) => { + it('should capture full viewport on hidpi', async ({ browserType, browserName, headless, isWindows, trace }, testInfo) => { it.fixme(browserName === 'chromium' && !headless, 'The square is not on the video'); it.fixme(browserName === 'firefox' && isWindows, 'https://github.com/microsoft/playwright/issues/14405'); + it.fixme(browserName === 'firefox' && trace === 'on', 'https://github.com/microsoft/playwright/issues/10060'); const size = { width: 600, height: 400 }; const browser = await browserType.launch();