Skip to content

Commit

Permalink
Skip test in firefox too
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffposnick committed Feb 22, 2021
1 parent 315f04c commit bc9e736
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/workbox-window/integration/test-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,10 @@ describe(`[workbox-window] Workbox`, function() {
});

it(`reports all events for an external SW registration`, async function() {
// This test doesn't work in Safari:
// This test doesn't work in Safari or Firefox:
// https://github.com/GoogleChrome/workbox/issues/2755
if (seleniumBrowser.getId() === 'safari') {
if (seleniumBrowser.getId() === 'safari' ||
seleniumBrowser.getId() === 'firefox') {
this.skip();
}

Expand Down

0 comments on commit bc9e736

Please sign in to comment.