From 3f0eaa235008ff1595d37d4dc52b0b5ac9480956 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 23 Dec 2019 10:40:15 -0800 Subject: [PATCH] test(wk): unskip test that failed because bootstrap scripts did not survive PSON (#331) --- test/page.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/page.spec.js b/test/page.spec.js index ac732d894a..aa074e5535 100644 --- a/test/page.spec.js +++ b/test/page.spec.js @@ -487,7 +487,7 @@ module.exports.describe = function({testRunner, expect, headless, playwright, FF }); expect(result).toBe(15); }); - it.skip(WEBKIT)('should work after cross origin navigation', async({page, server}) => { + it('should work after cross origin navigation', async({page, server}) => { await page.goto(server.EMPTY_PAGE); await page.exposeFunction('compute', function(a, b) { return a * b;