tests(webkit): unskip test that depends on frameStoppedLoading (#269)

This commit is contained in:
Yury Semikhatsky 2019-12-16 21:19:41 -07:00 committed by Dmitry Gozman
parent 4a5929da55
commit 8828228702

View File

@ -535,7 +535,7 @@ module.exports.addTests = function({testRunner, expect, playwright, FFOX, CHROME
expect(forwardResponse).toBe(null);
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) => {});
const navigationPromise = page.goto(server.PREFIX + '/frames/one-frame.html');
const frame = await new Promise(f => page.once('frameattached', f));