We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb69b2a commit cab00fdCopy full SHA for cab00fd
karma.conf.js
@@ -5,10 +5,7 @@ var webpackConfig = require('./webpack.config.js');
5
6
7
module.exports = function (config) {
8
- //workaround for travis
9
- if (process.env.TRAVIS) {
10
- configuration.browsers = ['PhantomJS'];
11
- }
+
12
var configuration = {
13
14
// base path that will be used to resolve all patterns (eg. files, exclude)
@@ -74,5 +71,11 @@ module.exports = function (config) {
74
71
// if true, Karma captures browsers, runs the tests and exits
75
72
singleRun: false
76
73
};
+ //workaround for travis
+ if (process.env.TRAVIS) {
77
+ configuration.browsers = ['PhantomJS'];
78
+ }
79
80
config.set(configuration);
-}
81
+};
0 commit comments