Skip to content

Commit 8fed0b3

Browse files
authored
feat(firefox): roll Firefox to r1200 (#4316)
This roll includes: - fix for the firefox flakiness related to popups - fix for browser context closing with beforeunload events References #4021
1 parent 1c39689 commit 8fed0b3

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

browsers.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
{
1010
"name": "firefox",
11-
"revision": "1198",
11+
"revision": "1200",
1212
"download": true
1313
},
1414
{

test/beforeunload.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ it('should close browser with beforeunload page', (test, {browserName}) => {
2929
});
3030

3131
it('should close browsercontext with beforeunload page', (test, {browserName}) => {
32-
test.fixme(browserName === 'firefox');
3332
}, async ({server, contextFactory }) => {
3433
const browserContext = await contextFactory();
3534
const page = await browserContext.newPage();
@@ -75,7 +74,6 @@ it('should run beforeunload if asked for', async ({context, server, isChromium,
7574

7675
it('should access page after beforeunload', (test, { browserName }) => {
7776
test.fixme(browserName === 'chromium');
78-
test.fixme(browserName === 'firefox');
7977
}, async ({contextFactory, server}) => {
8078
const context = await contextFactory();
8179
const page = await context.newPage();

0 commit comments

Comments
 (0)