tests(webkit): reenable should await promise from popup (#1447)
This commit is contained in:
parent
e115e8e2a9
commit
34cc358ad3
|
|
@ -276,7 +276,7 @@ module.exports.describe = function({testRunner, expect, FFOX, CHROMIUM, WEBKIT,
|
||||||
const result = await page.evaluate(() => ({abc: 123}));
|
const result = await page.evaluate(() => ({abc: 123}));
|
||||||
expect(result).toEqual({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);
|
await page.goto(server.EMPTY_PAGE);
|
||||||
const result = await page.evaluate(() => {
|
const result = await page.evaluate(() => {
|
||||||
const win = window.open('about:blank');
|
const win = window.open('about:blank');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue