Skip to content

Commit

Permalink
feat(firefox): bump to 1205 (#4386)
Browse files Browse the repository at this point in the history
  • Loading branch information
dgozman authored Nov 10, 2020
1 parent bd75fb1 commit 488b256
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
{
"name": "firefox",
"revision": "1204",
"revision": "1205",
"download": true
},
{
Expand Down
2 changes: 2 additions & 0 deletions test/workers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}) {
Expand Down

0 comments on commit 488b256

Please sign in to comment.