karma-coverage-allsources
v0.0.4
Published
### Example karma.conf.js
Downloads
2,429
Readme
istanbul include-include-allsources
for use with the karma-coverage reporter
Example karma.conf.js
Important: coverage-allsources must come before coverage. This is a temporary package, pending fix for https://github.com/karma-runner/karma-coverage/issues/125
reporters: ['progress', 'coverage-allsources', 'coverage'],
coverageReporter: {
dir: 'docs/coverage',
include: 'src/**/!(*.spec).js',
exclude: 'src/main.js',
reporters: [
{ type: 'html', subdir: 'report-html' },
{ type: 'clover', subdir: '.', file: 'clover.xml' }
]
}