test(wk): unskip passing test (#339)

This commit is contained in:
Yury Semikhatsky 2019-12-26 15:27:52 -08:00 committed by GitHub
parent f56ff07f19
commit c540561503
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -532,7 +532,7 @@ module.exports.describe = function({testRunner, expect, headless, playwright, FF
const result = await page.content(); const result = await page.content();
expect(result).toBe(expectedOutput); expect(result).toBe(expectedOutput);
}); });
it.skip(FFOX || WEBKIT)('should not confuse with previous navigation', async({page, server}) => { it.skip(FFOX)('should not confuse with previous navigation', async({page, server}) => {
// TODO: ffox and webkit lack 'init' lifecycle event. // TODO: ffox and webkit lack 'init' lifecycle event.
const imgPath = '/img.png'; const imgPath = '/img.png';
let imgResponse = null; let imgResponse = null;