Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

grunt-istanbul-combine

yomed1.1k0.1.0

Combine istanbul coverage files with grunt

gruntplugin, grunt, istanbul, coverage, report, merge, combine

readme

grunt-istanbul-combine

Grunt plugin to combine istanbul coverage reports using istanbul-combine.

Installation

npm install grunt-istanbul-combine --save-dev

Usage

This plugin is useful for combining multiple code coverage reports generated by istanbul. Accepts options as defined in istanbul-combine.

grunt.loadNpmTasks('grunt-istanbul-combine');
grunt.initConfig({
    options: {
        dir: '.coverage' // output directory for result
        pattern: '**/*/coverage.json', // json reports to be combined
        base: 'src', // base directory for resolving absolute paths
        reporters: {
            html: {}, // html reporter options
            cobertura: {} // cobertura reporter options
        }
    }
});