test: skip fonts test on Windows (#12708)
This test requires windows-specific test expectations. We'll use it as a playground for the rebaseline workflow. References #12707
This commit is contained in:
parent
ffc8031bad
commit
acae63c409
|
|
@ -711,7 +711,8 @@ it.describe('page screenshot animations', () => {
|
|||
]);
|
||||
});
|
||||
|
||||
it('should respect fonts option', async ({ page, server }) => {
|
||||
it('should respect fonts option', async ({ page, server, isWindows }) => {
|
||||
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;
|
||||
// Stall font loading.
|
||||
|
|
|
|||
Loading…
Reference in a new issue