tests(webkit): unskip test that depends on frameStoppedLoading (#269)
This commit is contained in:
parent
4a5929da55
commit
8828228702
|
|
@ -535,7 +535,7 @@ module.exports.addTests = function({testRunner, expect, playwright, FFOX, CHROME
|
||||||
expect(forwardResponse).toBe(null);
|
expect(forwardResponse).toBe(null);
|
||||||
expect(page.url()).toBe(server.PREFIX + '/second.html');
|
expect(page.url()).toBe(server.PREFIX + '/second.html');
|
||||||
});
|
});
|
||||||
it.skip(WEBKIT)('should work when subframe issues window.stop()', async({page, server}) => {
|
it('should work when subframe issues window.stop()', async({page, server}) => {
|
||||||
server.setRoute('/frames/style.css', (req, res) => {});
|
server.setRoute('/frames/style.css', (req, res) => {});
|
||||||
const navigationPromise = page.goto(server.PREFIX + '/frames/one-frame.html');
|
const navigationPromise = page.goto(server.PREFIX + '/frames/one-frame.html');
|
||||||
const frame = await new Promise(f => page.once('frameattached', f));
|
const frame = await new Promise(f => page.once('frameattached', f));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue