Skip to content

Commit f9bd1d0

Browse files
authored
fix(webkit): fix blob downloads on mac (#1972)
1 parent 7ecf252 commit f9bd1d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"playwright": {
1111
"chromium_revision": "762211",
1212
"firefox_revision": "1086",
13-
"webkit_revision": "1209"
13+
"webkit_revision": "1211"
1414
},
1515
"scripts": {
1616
"ctest": "cross-env BROWSER=chromium node --unhandled-rejections=strict test/test.js",

test/download.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ describe('Download', function() {
8383
expect(fs.readFileSync(path).toString()).toBe('Hello world');
8484
await page.close();
8585
})
86-
it.fail(WEBKIT && MAC)(`should report download path within page.on('download', …) handler for Blobs`, async({browser, server}) => {
86+
it(`should report download path within page.on('download', …) handler for Blobs`, async({browser, server}) => {
8787
const page = await browser.newPage({ acceptDownloads: true });
8888
const onDownloadPath = new Promise((res) => {
8989
page.on('download', dl => {

0 commit comments

Comments
 (0)