From e69d3d976f6ebf1fe7f76f43843b766be657b633 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 18 Apr 2023 09:21:20 -0700 Subject: [PATCH] test: remove fixme for webkit video on linux (#22461) Fixes https://github.com/microsoft/playwright/issues/22411 --- tests/library/video.spec.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/library/video.spec.ts b/tests/library/video.spec.ts index 90fbcc79ec..84fb8db623 100644 --- a/tests/library/video.spec.ts +++ b/tests/library/video.spec.ts @@ -674,10 +674,10 @@ it.describe('screencast', () => { expect(files.length).toBe(1); }); - it('should capture full viewport', async ({ browserType, browserName, headless, isWindows, isLinux }, testInfo) => { + it('should capture full viewport', async ({ browserType, browserName, headless, isWindows }, testInfo) => { + it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/22411' }); 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 === 'webkit' && isLinux && !headless, 'https://github.com/microsoft/playwright/issues/22411'); const size = { width: 600, height: 400 }; const browser = await browserType.launch(); @@ -709,10 +709,10 @@ it.describe('screencast', () => { expectAll(pixels, almostRed); }); - it('should capture full viewport on hidpi', async ({ browserType, browserName, headless, isWindows, isLinux }, testInfo) => { + it('should capture full viewport on hidpi', async ({ browserType, browserName, headless, isWindows }, testInfo) => { + it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/22411' }); 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 === 'webkit' && isLinux && !headless, 'https://github.com/microsoft/playwright/issues/22411'); const size = { width: 600, height: 400 }; const browser = await browserType.launch();