Skip to content

Commit 34cc358

Browse files
authored
tests(webkit): reenable should await promise from popup (#1447)
1 parent e115e8e commit 34cc358

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/evaluation.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ module.exports.describe = function({testRunner, expect, FFOX, CHROMIUM, WEBKIT,
276276
const result = await page.evaluate(() => ({abc: 123}));
277277
expect(result).toEqual({abc: 123});
278278
});
279-
it.fail(WEBKIT)('should await promise from popup', async function({page, server}) {
279+
it('should await promise from popup', async function({page, server}) {
280280
await page.goto(server.EMPTY_PAGE);
281281
const result = await page.evaluate(() => {
282282
const win = window.open('about:blank');

0 commit comments

Comments
 (0)