From 1a652923be237e963a0c1173ac9db5f030a63205 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 23 Dec 2019 10:39:48 -0800 Subject: [PATCH] test(wk): unskip test that failed because bootstrap scripts did not survive PSON --- 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;