From 0bc55fac9159c8cf9d6ed2b69904c3a26ef8e55c Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 21 Sep 2023 11:20:18 -0700 Subject: [PATCH] test: unskip "should capture full viewport" (#27233) This is fixed by https://github.com/microsoft/playwright-browsers/pull/643 Fixes https://github.com/microsoft/playwright-browsers/issues/637 --- tests/library/video.spec.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/library/video.spec.ts b/tests/library/video.spec.ts index ae0a7248de..55b97f2f80 100644 --- a/tests/library/video.spec.ts +++ b/tests/library/video.spec.ts @@ -695,7 +695,6 @@ it.describe('screencast', () => { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/22411' }); it.fixme(browserName === 'chromium' && (!headless || !!process.env.PLAYWRIGHT_CHROMIUM_USE_HEADLESS_NEW), 'The square is not on the video'); it.fixme(browserName === 'firefox' && isWindows, 'https://github.com/microsoft/playwright/issues/14405'); - it.fixme(browserName === 'webkit' && !headless, 'https://github.com/microsoft/playwright-browsers/issues/637'); const size = { width: 600, height: 400 }; const browser = await browserType.launch();