0.0.1 • Published 11 years ago

grunt-jscover v0.0.1

Weekly downloads
69
License
-
Repository
github
Last release
11 years ago

grunt-jscover

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

This is a fork of grunt-jscoverage which uses JSCover instead of node-jscoverage.

Installation

Install npm package

npm install grunt-jscover --save-dev

Add this line to your project's Gruntfile.js:

grunt.loadNpmTasks("grunt-jscover");

Usage

note: this task will delete the contents of the output-directory; if one exists; before attempting to parse source.

grunt.initConfig({
  jscoverage: {
    options: {
      inputDirectory: 'lib',
      outputDirectory: 'lib-cov'
    }
  }
});

Run

grunt jscover