Skip to content

Commit

Permalink
Change config
Browse files Browse the repository at this point in the history
  • Loading branch information
dyuvzhenko committed Nov 11, 2017
1 parent 5f0a6ae commit 5677c25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"test": "grunt test",
"dev": "concurrently --kill-others --raw \"grunt server\" \"grunt test\"",
"build": "grunt build",
"webpack-test": "webpack --config webpack/config.js && karma start test/config/karma.conf.js --single-run"
"webpack-test": "webpack --config webpack/config.js && karma start test/config/karma.conf.js"
},
"devDependencies": {
"babel-core": "^6.22.1",
Expand Down
6 changes: 3 additions & 3 deletions test/config/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ module.exports = function (config) {


// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
autoWatch: false,


keepalive: true,
keepalive: false,


// Start these browsers, currently available:
Expand All @@ -80,6 +80,6 @@ module.exports = function (config) {

// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false
singleRun: true
});
};

0 comments on commit 5677c25

Please sign in to comment.