From 282aeda32f58e082dc87943397a9738f8b1d6085 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 20 Mar 2020 11:58:23 -0700 Subject: [PATCH] tests(webkit): reenable should await promise from popup --- 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 dc2c28113e024..1fb60a11c453d 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');