test: enable page opener test on WebKit (#1193)

This commit is contained in:
Yury Semikhatsky 2020-03-03 14:11:17 -08:00 committed by GitHub
parent 3eec2d07f5
commit 4a9a155838
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
"playwright": {
"chromium_revision": "745253",
"firefox_revision": "1032",
"webkit_revision": "1162"
"webkit_revision": "1164"
},
"scripts": {
"ctest": "cross-env BROWSER=chromium node test/test.js",

View File

@ -369,7 +369,7 @@ module.exports.describe = function({testRunner, expect, playwright, CHROMIUM, FF
// Cleanup.
await context.close();
});
it.fail(WEBKIT)('should have an opener', async({browser, server}) => {
it('should have an opener', async({browser, server}) => {
const context = await browser.newContext();
const page = await context.newPage();
await page.goto(server.EMPTY_PAGE);