tests(webkit): reenable should await promise from popup (#1447)

This commit is contained in:
Yury Semikhatsky 2020-03-20 21:22:48 -07:00 committed by GitHub
parent e115e8e2a9
commit 34cc358ad3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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');