feat(webkit): bump to 1534 (#8451)

This commit is contained in:
Yury Semikhatsky 2021-08-25 14:27:49 -07:00 committed by GitHub
parent cd110e6477
commit 204b6321b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -23,7 +23,7 @@
},
{
"name": "webkit",
"revision": "1531",
"revision": "1534",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446"

View file

@ -92,7 +92,8 @@ it('should not fail for window object', async ({ page, browserName }) => {
expect(message.text()).toEqual('JSHandle@object');
});
it('should trigger correct Log', async ({page, server}) => {
it('should trigger correct Log', async ({page, server, browserName, isWindows}) => {
it.skip(browserName === 'webkit' && isWindows, 'Upstream issue https://bugs.webkit.org/show_bug.cgi?id=229515');
await page.goto('about:blank');
const [message] = await Promise.all([
page.waitForEvent('console'),