diff options
Diffstat (limited to 'tests/karma.config.js')
-rw-r--r-- | tests/karma.config.js | 13 |
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, |