test: enable link preload interception test (#16935)

This commit is contained in:
Yury Semikhatsky 2022-08-30 17:30:01 -07:00 committed by GitHub
parent 77f6b25941
commit 990167124f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -352,7 +352,6 @@ it('should delete the origin header', async ({ page, server, isAndroid, browserN
it('should continue preload link requests', async ({ page, server, browserName }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16745' });
it.fixme(browserName === 'webkit', 'Preload requests are aborted in WebKit when interception is enabled');
let intercepted = false;
await page.route('**/one-style.css', route => {
intercepted = true;

View File

@ -356,7 +356,6 @@ function findResponse(har: har.HARFile, url: string): har.Response {
it('should fulfill preload link requests', async ({ page, server, browserName }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16745' });
it.fixme(browserName === 'webkit', 'Preload requests are aborted in WebKit when interception is enabled');
let intercepted = false;
await page.route('**/one-style.css', route => {
intercepted = true;