test: Remove "request interception" from oopif tests (#3671)

We don't have request interceptions :)
This commit is contained in:
Darío Kondratiuk 2020-08-28 15:37:16 -03:00 committed by GitHub
parent b34d9aba25
commit 90408aa4f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,7 +158,7 @@ it.skip(!options.CHROMIUM)('should take screenshot', async ({browser, page, serv
expect(await page.screenshot()).toMatchImage(golden('screenshot-oopif.png'), { threshold: 0.3 });
});
it.skip(!options.CHROMIUM)('should load oopif iframes with subresources and request interception', async function({browser, page, server, context}) {
it.skip(!options.CHROMIUM)('should load oopif iframes with subresources and route', async function({browser, page, server, context}) {
await page.route('**/*', route => route.continue());
await page.goto(server.PREFIX + '/dynamic-oopif.html');
expect(await countOOPIFs(browser)).toBe(1);