summaryrefslogtreecommitdiff
path: root/web-ui/karma.conf.js
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@thoughtworks.com>2014-10-28 21:26:17 +0100
committerBruno Wagner <bwagner@thoughtworks.com>2014-10-28 21:26:17 +0100
commit09df80b1860ac22864f3e77af14bdab6ac0fbe2c (patch)
treefa883be9ff3f6ebf6d60ba3ae120cbf86b1ec824 /web-ui/karma.conf.js
parent5435f4d13f5cd96e6c76fbeee12b8b96536f7605 (diff)
Running karma will now output test results
Diffstat (limited to 'web-ui/karma.conf.js')
-rw-r--r--web-ui/karma.conf.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/web-ui/karma.conf.js b/web-ui/karma.conf.js
index 015de6bb..24078513 100644
--- a/web-ui/karma.conf.js
+++ b/web-ui/karma.conf.js
@@ -54,7 +54,7 @@ module.exports = function (config) {
// test results reporter to use
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
- reporters: ['progress'],
+ reporters: ['progress', 'junit'],
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
@@ -82,5 +82,10 @@ module.exports = function (config) {
// ms).
reportSlowerThan: 500,
+ junitReporter: {
+ outputFile: 'test-results.xml',
+ suite: ''
+ }
+
});
};