0.0.4 • Published 8 years ago

karma-coverage-allsources v0.0.4

Weekly downloads
798
License
MIT
Repository
-
Last release
8 years ago

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' }
  ]
}