Skip to content

Commit 66137fd

Browse files
feat(webkit): roll to r2265 (#39463)
1 parent d357522 commit 66137fd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/playwright-core/browsers.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
{
4747
"name": "webkit",
48-
"revision": "2263",
48+
"revision": "2265",
4949
"installByDefault": true,
5050
"revisionOverrides": {
5151
"mac14": "2251",

tests/library/download.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,8 @@ it.describe('download event', () => {
396396
expect(fs.existsSync(path.join(path1, '..'))).toBeFalsy();
397397
});
398398

399-
it('should save downloads to artifactsDir', async ({ server, browserType }, testInfo) => {
399+
it('should save downloads to artifactsDir', async ({ server, browserType, browserName, isMac, macVersion }, testInfo) => {
400+
it.skip(browserName === 'webkit' && isMac && macVersion <= 14, 'WebKit on macOS-14 is frozen');
400401
const artifactsDir = testInfo.outputPath('artifacts');
401402
const browser = await browserType.launch({ artifactsDir });
402403
const page = await browser.newPage();

0 commit comments

Comments
 (0)