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
This commit is contained in:
parent
1c39689dd6
commit
8fed0b3319
|
|
@ -8,7 +8,7 @@
|
|||
},
|
||||
{
|
||||
"name": "firefox",
|
||||
"revision": "1198",
|
||||
"revision": "1200",
|
||||
"download": true
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -29,7 +29,6 @@ it('should close browser with beforeunload page', (test, {browserName}) => {
|
|||
});
|
||||
|
||||
it('should close browsercontext with beforeunload page', (test, {browserName}) => {
|
||||
test.fixme(browserName === 'firefox');
|
||||
}, async ({server, contextFactory }) => {
|
||||
const browserContext = await contextFactory();
|
||||
const page = await browserContext.newPage();
|
||||
|
|
@ -75,7 +74,6 @@ it('should run beforeunload if asked for', async ({context, server, isChromium,
|
|||
|
||||
it('should access page after beforeunload', (test, { browserName }) => {
|
||||
test.fixme(browserName === 'chromium');
|
||||
test.fixme(browserName === 'firefox');
|
||||
}, async ({contextFactory, server}) => {
|
||||
const context = await contextFactory();
|
||||
const page = await context.newPage();
|
||||
|
|
|
|||
Loading…
Reference in a new issue