test: mark webkit ubuntu fonts test as fixme (#12885)

References https://github.com/microsoft/playwright/issues/12839
This commit is contained in:
Andrey Lushnikov 2022-03-18 10:35:41 -06:00 committed by GitHub
parent a10f6f3406
commit bb756c5b23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'); it.fixme(isWindows, 'This requires a windows-specific test expectations. https://github.com/microsoft/playwright/issues/12707');
await page.setViewportSize({ width: 500, height: 500 }); await page.setViewportSize({ width: 500, height: 500 });
let serverRequest, serverResponse; let serverRequest, serverResponse;