diff --git a/package.json b/package.json index 5fc487514c..85327c62cd 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "protractor": "~0.20.1", "http-server": "^0.6.1", "bower": "^1.3.1", - "shelljs": "^0.2.6" + "shelljs": "^0.2.6", + "karma-junit-reporter": "^0.2.2" }, "scripts": { "postinstall": "bower install", diff --git a/test/karma.conf.js b/test/karma.conf.js index 78a8d1a8a5..3b77e80188 100644 --- a/test/karma.conf.js +++ b/test/karma.conf.js @@ -20,7 +20,8 @@ module.exports = function(config){ plugins : [ 'karma-chrome-launcher', 'karma-firefox-launcher', - 'karma-jasmine' + 'karma-jasmine', + 'karma-junit-reporter' ], junitReporter : { @@ -29,4 +30,4 @@ module.exports = function(config){ } }); -}; \ No newline at end of file +};