Skip to content

Commit

Permalink
test: mark Page.close test as failing in Firefox (#4929)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens authored and aslushnikov committed Sep 12, 2019
1 parent e17d38c commit f504c04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/page.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ module.exports.addTests = function({testRunner, expect, headless, puppeteer, CHR
await newPage.close();
expect(newPage.isClosed()).toBe(true);
});
it('should terminate network waiters', async({context, server}) => {
it_fails_ffox('should terminate network waiters', async({context, server}) => {
const newPage = await context.newPage();
const results = await Promise.all([
newPage.waitForRequest(server.EMPTY_PAGE).catch(e => e),
Expand Down

0 comments on commit f504c04

Please sign in to comment.