UNPKG

419 BJavaScriptView Raw
1// karma-coverage
2// ==============
3//
4// Main entry point for the karma-coverage module.
5// Exposes the preprocessor and reporter plugins.
6
7// Registering one additional (karma specific) reporter: in-memory
8require('istanbul').Report.register(require('./in-memory-report'))
9
10module.exports = {
11 'preprocessor:coverage': ['factory', require('./preprocessor')],
12 'reporter:coverage': ['type', require('./reporter')]
13}