From bcecce6b6e5215a6b129e4fadcd60bd42838ddf2 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 6 Feb 2023 10:41:09 +0100 Subject: [PATCH] test: skip resource-timing WK tests on Windows (#20622) --- tests/library/resource-timing.spec.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/library/resource-timing.spec.ts b/tests/library/resource-timing.spec.ts index 5a5a03c9d2..360dc5edb9 100644 --- a/tests/library/resource-timing.spec.ts +++ b/tests/library/resource-timing.spec.ts @@ -33,7 +33,9 @@ it('should work @smoke', async ({ contextFactory, server }) => { await context.close(); }); -it('should work for subresource', async ({ contextFactory, server }) => { +it('should work for subresource', async ({ contextFactory, server, browserName, platform }) => { + it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/20654' }); + it.fixme(browserName === 'webkit' && platform === 'win32', 'responseStart is wrong due upstream webkit/libcurl bug'); const context = await contextFactory(); const page = await context.newPage(); const requests = []; @@ -49,7 +51,9 @@ it('should work for subresource', async ({ contextFactory, server }) => { await context.close(); }); -it('should work for SSL', async ({ browser, httpsServer }) => { +it('should work for SSL', async ({ browser, httpsServer, browserName, platform }) => { + it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/20654' }); + it.fixme(browserName === 'webkit' && platform === 'win32', 'responseStart is wrong due upstream webkit/libcurl bug'); const page = await browser.newPage({ ignoreHTTPSErrors: true }); const [request] = await Promise.all([ page.waitForEvent('requestfinished'),