fix(firefox): fulfill response with empty body (#8166)

This commit is contained in:
Yury Semikhatsky 2021-08-12 11:00:20 -07:00 committed by GitHub
parent 45f51239a6
commit 4705c90682
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -13,12 +13,12 @@
},
{
"name": "firefox",
"revision": "1281",
"revision": "1282",
"installByDefault": true
},
{
"name": "firefox-beta",
"revision": "1275",
"revision": "1276",
"installByDefault": false
},
{

View file

@ -42,7 +42,6 @@ it('should fulfill intercepted response', async ({page, server, browserName}) =>
it('should fulfill response with empty body', async ({page, server, browserName, browserMajorVersion}) => {
it.skip(browserName === 'chromium' && browserMajorVersion <= 91);
it.fail(browserName === 'firefox');
await page.route('**/*', async route => {
// @ts-expect-error
await route._intercept({});