From bb756c5b230e8df63149a69346e712103ec41a4c Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Fri, 18 Mar 2022 10:35:41 -0600 Subject: [PATCH] test: mark webkit ubuntu fonts test as fixme (#12885) References https://github.com/microsoft/playwright/issues/12839 --- tests/page/page-screenshot.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/page/page-screenshot.spec.ts b/tests/page/page-screenshot.spec.ts index fbf8a616c4..a3415deb9c 100644 --- a/tests/page/page-screenshot.spec.ts +++ b/tests/page/page-screenshot.spec.ts @@ -726,7 +726,8 @@ it.describe('page screenshot animations', () => { ]); }); - it('should respect fonts option', async ({ page, server, isWindows }) => { + it('should respect fonts option', async ({ page, server, isWindows, browserName, isLinux }) => { + it.fixme(browserName === 'webkit' && isLinux, 'https://github.com/microsoft/playwright/issues/12839'); it.fixme(isWindows, 'This requires a windows-specific test expectations. https://github.com/microsoft/playwright/issues/12707'); await page.setViewportSize({ width: 500, height: 500 }); let serverRequest, serverResponse;