Skip to content

Commit 14a8292

Browse files
authored
feat(webkit): bump to 1378 (#4338)
1 parent 12afb79 commit 14a8292

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

browsers.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
{
1515
"name": "webkit",
16-
"revision": "1373",
16+
"revision": "1378",
1717
"download": true
1818
}
1919
]

test/page-close.spec.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,15 @@
1717

1818
import { it, expect } from './fixtures';
1919

20-
it('should close page with active dialog', (test, { browserName, platform }) => {
21-
test.fixme(browserName === 'webkit' && platform === 'darwin', 'WebKit hangs on a Mac');
22-
}, async ({context}) => {
20+
it('should close page with active dialog', async ({context}) => {
2321
const page = await context.newPage();
2422
await page.setContent(`<button onclick="setTimeout(() => alert(1))">alert</button>`);
2523
page.click('button');
2624
await page.waitForEvent('dialog');
2725
await page.close();
2826
});
2927

30-
it('should not accept after close', (test, { browserName, platform }) => {
31-
test.fixme(browserName === 'webkit' && platform === 'darwin', 'WebKit hangs on a Mac');
32-
}, async ({page}) => {
28+
it('should not accept after close', async ({page}) => {
3329
page.evaluate(() => alert()).catch(() => {});
3430
const dialog = await page.waitForEvent('dialog');
3531
await page.close();

0 commit comments

Comments
 (0)