test: enable autowaiting test on webkit (#11343)

Fixes #11219
This commit is contained in:
Andrey Lushnikov 2022-01-12 02:52:58 -07:00 committed by GitHub
parent 2b6aeb0902
commit bd837b5863
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,6 @@ it('should await navigation when clicking anchor', async ({ page, server }) => {
});
it('should not stall on JS navigation link', async ({ page, browserName }) => {
it.fixme(browserName === 'webkit');
await page.setContent(`<a href="javascript:console.log(1)">console.log</a>`);
await page.click('a');
});