summaryrefslogtreecommitdiffstats
path: root/tests/karma.config.js
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-01-21 00:57:18 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-01-21 00:57:18 +0100
commitf29bd1cb0b839f81bed0b87ae7900da2b1d0e474 (patch)
tree3477f874fb4c1b4c4b1f1d6cf5a1a6eba58b86d3 /tests/karma.config.js
parent350214c6093bbd300102a364f20caa91d23d5fb9 (diff)
downloadnextcloud-server-f29bd1cb0b839f81bed0b87ae7900da2b1d0e474.tar.gz
nextcloud-server-f29bd1cb0b839f81bed0b87ae7900da2b1d0e474.zip
adding code coverage support
Diffstat (limited to 'tests/karma.config.js')
-rw-r--r--tests/karma.config.js13
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/karma.config.js b/tests/karma.config.js
index cb2d261a4fb..f73ade0f3c6 100644
--- a/tests/karma.config.js
+++ b/tests/karma.config.js
@@ -97,7 +97,7 @@ module.exports = function(config) {
// test results reporter to use
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
- reporters: ['dots', 'junit'],
+ reporters: ['dots', 'junit', 'coverage'],
junitReporter: {
outputFile: 'tests/autotest-results-js.xml'
@@ -106,6 +106,17 @@ module.exports = function(config) {
// web server port
port: 9876,
+ preprocessors: {
+ 'apps/files/js/*.js': 'coverage'
+ },
+
+ coverageReporter: {
+ dir:'tests/karma-coverage',
+ reporters: [
+ { type: 'html' },
+ { type: 'cobertura' }
+ ]
+ },
// enable / disable colors in the output (reporters and logs)
colors: true,