Skip to content

Commit

Permalink
ci: enable Chrome again
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Oct 26, 2020
1 parent 1a9e510 commit c5c7135
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* eslint-env node */

const fs = require('fs');
const path = require('path');

process.env.BABEL_ENV = 'test';
process.traceDeprecation = true;
Expand All @@ -16,7 +17,7 @@ const chromeFlags = [
'--no-first-run',
'--noerrdialogs',
'--no-default-browser-check',
'--user-data-dir=.chrome',
'--user-data-dir=' + path.resolve('.chrome'),
'--disable-translate',
'--disable-extensions',
'--disable-infobars',
Expand Down Expand Up @@ -125,7 +126,7 @@ module.exports = function(config) {
};

if (ci) {
configuration.browsers = ['Firefox_ci'];
configuration.browsers = ['Firefox_ci', 'Chrome_ci'];

if (process.env.TRAVIS) {
// enable coveralls
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,20 +71,20 @@
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-integrate-test-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.11.0",
"eslint": "^7.12.0",
"htmlhint": "^0.14.1",
"in-publish": "^2.0.1",
"jasmine-core": "^3.6.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "^2.0.3",
"karma-coveralls": "^2.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-firefox-launcher": "^2.0.0",
"karma-jasmine": "4.0.1",
"karma-jasmine-matchers": "4.0.2",
"karma-verbose-reporter": "0.0.6",
"karma-webpack": "^4.0.2",
"lint-staged": "^10.4.2",
"lint-staged": "^10.5.0",
"load-script": "^1.0.0",
"pre-commit": "^1.2.2",
"terser-webpack-plugin": "^4.2.2",
Expand Down

0 comments on commit c5c7135

Please sign in to comment.