Skip to content

Commit

Permalink
skip chromium in karma
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey committed Apr 8, 2021
1 parent e140442 commit d20b6eb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ jobs:
run: sudo apt-get install ffmpeg pulseaudio
if: ${{startsWith(matrix.os, 'ubuntu')}}

- name: remove chromium
run: sudo apt-get remove chromium*
if: ${{startsWith(matrix.os, 'ubuntu')}}

- name: start pulseaudio for firefox on linux w/o browserstack
run: pulseaudio -D
if: ${{startsWith(matrix.os, 'ubuntu')}}
Expand Down
2 changes: 1 addition & 1 deletion scripts/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function(config) {
preferHeadless: false,
browsers(aboutToRun) {
return aboutToRun.filter(function(launcherName) {
return !(/^Safari/).test(launcherName);
return !(/^(Safari|Chromium)/).test(launcherName);
});
},
files(defaults) {
Expand Down

0 comments on commit d20b6eb

Please sign in to comment.