Skip to content

Commit

Permalink
chore: update karma-config to 8 to drop ie11 and older browsers (#1227)
Browse files Browse the repository at this point in the history
  • Loading branch information
gkatsev authored and misteroneill committed May 2, 2022
1 parent 8013830 commit 44c12ea
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 43 deletions.
92 changes: 51 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -87,7 +87,7 @@
"url-toolkit": "^2.2.1",
"videojs-contrib-eme": "^3.8.1",
"videojs-contrib-quality-levels": "^2.0.4",
"videojs-generate-karma-config": "^7.1.0",
"videojs-generate-karma-config": "^8.0.1",
"videojs-generate-rollup-config": "^6.2.2",
"videojs-generator-verify": "~3.0.1",
"videojs-http-source-selector": "^1.1.6",
Expand Down
2 changes: 1 addition & 1 deletion scripts/karma.conf.js
Expand Up @@ -10,7 +10,7 @@ module.exports = function(config) {
preferHeadless: false,
browsers(aboutToRun) {
return aboutToRun.filter(function(launcherName) {
return !(/^(Safari|Chromium)/).test(launcherName);
return !(/(Safari|Chromium)/).test(launcherName);
});
},
files(defaults) {
Expand Down

0 comments on commit 44c12ea

Please sign in to comment.