fix(webkit): fix blob downloads on mac (#1972)

This commit is contained in:
Yury Semikhatsky 2020-04-25 08:46:58 -07:00 committed by GitHub
parent 7ecf252dd6
commit f9bd1d0720
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": "762211",
"firefox_revision": "1086",
"webkit_revision": "1209"
"webkit_revision": "1211"
},
"scripts": {
"ctest": "cross-env BROWSER=chromium node --unhandled-rejections=strict test/test.js",

View File

@ -83,7 +83,7 @@ describe('Download', function() {
expect(fs.readFileSync(path).toString()).toBe('Hello world');
await page.close();
})
it.fail(WEBKIT && MAC)(`should report download path within page.on('download', …) handler for Blobs`, async({browser, server}) => {
it(`should report download path within page.on('download', …) handler for Blobs`, async({browser, server}) => {
const page = await browser.newPage({ acceptDownloads: true });
const onDownloadPath = new Promise((res) => {
page.on('download', dl => {