Skip to content

Commit

Permalink
test: mark webkit ubuntu fonts test as fixme (#12885)
Browse files Browse the repository at this point in the history
References #12839
  • Loading branch information
aslushnikov committed Mar 18, 2022
1 parent a10f6f3 commit bb756c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/page/page-screenshot.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit bb756c5

Please sign in to comment.