test: skip resource-timing WK tests on Windows (#20622)

This commit is contained in:
Max Schmitt 2023-02-06 10:41:09 +01:00 committed by GitHub
parent 8dfd2205ef
commit bcecce6b6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,9 @@ it('should work @smoke', async ({ contextFactory, server }) => {
await context.close(); 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 context = await contextFactory();
const page = await context.newPage(); const page = await context.newPage();
const requests = []; const requests = [];
@ -49,7 +51,9 @@ it('should work for subresource', async ({ contextFactory, server }) => {
await context.close(); 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 page = await browser.newPage({ ignoreHTTPSErrors: true });
const [request] = await Promise.all([ const [request] = await Promise.all([
page.waitForEvent('requestfinished'), page.waitForEvent('requestfinished'),