UNPKG

grunt-jscoverage

Version:

Grunt task for jscoverage; which will parse your source code and generate an instrumented version allowing testing tools to generate code coverage reports

22 lines (18 loc) 321 B
"use strict"; module.exports = function(grunt) { grunt.loadTasks('./tasks'); grunt.initConfig({ jscoverage: { tasks: { expand: true, cwd: 'tasks/', src: ['**/*.js'], dest: 'tasks-cov/', ext: '.js', }, options: { // empty } } }); };