mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-01 08:34:02 +03:00
test: skip resource-timing WK tests on Windows (#20622)
This commit is contained in:
parent
8dfd2205ef
commit
bcecce6b6e
@ -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'),
|
||||
|
Loading…
Reference in New Issue
Block a user