From 34cc358ad35b8a9e98306c8566fea948bdd84120 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 20 Mar 2020 21:22:48 -0700 Subject: [PATCH] tests(webkit): reenable should await promise from popup (#1447) --- test/evaluation.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/evaluation.spec.js b/test/evaluation.spec.js index dc2c28113e..1fb60a11c4 100644 --- a/test/evaluation.spec.js +++ b/test/evaluation.spec.js @@ -276,7 +276,7 @@ module.exports.describe = function({testRunner, expect, FFOX, CHROMIUM, WEBKIT, const result = await page.evaluate(() => ({abc: 123})); expect(result).toEqual({abc: 123}); }); - it.fail(WEBKIT)('should await promise from popup', async function({page, server}) { + it('should await promise from popup', async function({page, server}) { await page.goto(server.EMPTY_PAGE); const result = await page.evaluate(() => { const win = window.open('about:blank');