Skip to content

Commit

Permalink
fix(test): remove FirefoxHeadless
Browse files Browse the repository at this point in the history
  • Loading branch information
misteroneill committed Feb 3, 2024
1 parent a3247b6 commit 7f1533d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ module.exports = function(config) {

// see https://github.com/videojs/videojs-generate-karma-config
// for options
const options = {};
const options = {
browsers(aboutToRun) {
return aboutToRun.filter(launcherName => launcherName !== 'FirefoxHeadless');
}
};

config = generate(config, options);

Expand Down

0 comments on commit 7f1533d

Please sign in to comment.