diff --git a/Gruntfile.js b/Gruntfile.js index c5ba169..df5df65 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -10,11 +10,17 @@ module.exports = function (grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), karma: { - options: { - configFile: 'tests/config/karma.unit.js' + watch: { + options: { + configFile: 'tests/config/karma.unit.js', + singleRun: false + } }, single: { - singleRun: false + options: { + configFile: 'tests/config/karma.unit.js', + singleRun: true + } } },