test: enable download url test on webkit (#6588)

Fixed by the recent bump to 1478.
This commit is contained in:
Dmitry Gozman 2021-05-16 15:12:34 -07:00 committed by GitHub
parent d2a23a4abe
commit 5aafae39bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,8 +66,6 @@ it.describe('download event', () => {
});
it('should report proper download url when download is from download attribute', async ({browser, server, browserName}) => {
it.fixme(browserName === 'webkit', '@see https://github.com/microsoft/playwright/issues/5537');
const page = await browser.newPage({ acceptDownloads: true });
await page.goto(server.PREFIX + '/empty.html');
await page.setContent(`<a href="${server.PREFIX}/chromium-linux.zip" download="foo.zip">download</a>`);