feat(firefox): bump to 1205 (#4386)

This commit is contained in:
Dmitry Gozman 2020-11-09 16:16:10 -08:00 committed by GitHub
parent bd75fb1c55
commit 488b256c47
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -8,7 +8,7 @@
},
{
"name": "firefox",
"revision": "1204",
"revision": "1205",
"download": true
},
{

View file

@ -50,6 +50,8 @@ it('should report console logs', async function({page}) {
page.evaluate(() => new Worker(URL.createObjectURL(new Blob(['console.log(1)'], {type: 'application/javascript'})))),
]);
expect(message.text()).toBe('1');
// Firefox's juggler had an issue that reported worker blob urls as frame urls.
expect(page.url()).not.toContain('blob');
});
it('should have JSHandles for console logs', async function({page}) {