diff options
Diffstat (limited to 'sonar-server/Gruntfile.coffee')
-rw-r--r-- | sonar-server/Gruntfile.coffee | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sonar-server/Gruntfile.coffee b/sonar-server/Gruntfile.coffee index 82177d73582..c7700324e70 100644 --- a/sonar-server/Gruntfile.coffee +++ b/sonar-server/Gruntfile.coffee @@ -1,4 +1,5 @@ module.exports = (grunt) -> + grunt.loadNpmTasks('grunt-karma'); grunt.initConfig pkg: grunt.file.readJSON('package.json') @@ -178,6 +179,12 @@ module.exports = (grunt) -> ] + karma: + unit: + configFile: 'karma.conf.js' + singleRun: true + + watch: options: spawn: false |