grunt-istanbul icon indicating copy to clipboard operation
grunt-istanbul copied to clipboard

JavaScript codecoverage tool for Grunt

Results 14 grunt-istanbul issues
Sort by recently updated
recently updated
newest added

While setting up a project using `grunt-istanbul` locally, I noticed an `EBADENGINE` warning from Node based on my current Node version: ![image](https://user-images.githubusercontent.com/2937540/219868464-93426882-2d61-4db0-9978-94eb9dee8be5.png) It looks like at least the [CI is...

Has anyone got code coverage to work for nightwatch.js with Istanbul. Any helpful links to the configuration will be appreciated.

I have the following code var o = {}; o.tmp = function(c){ return { a : "model" b : function(...){ c.add(function(){ .... }); c.add(function(){ .... }); } } } o.tmp();...

Hi, I'm currently using [load-grunt-config](https://github.com/firstandthird/load-grunt-config) in order to load grunt task files, each of which contains relevant config for that task. Most plugins will namespace their config. So `jsonlint` would...

That makes it difficult to merge coverage reports from different sources. I am using instrument task on source files that are later combined into a bundle with browserify. At the...

https://github.com/taichi/grunt-istanbul/blob/master/package.json#L35

I'm trying to implement an istanbul report on code that's bundled using browserify, using the approach recommended here https://github.com/gotwarlost/istanbul/issues/59#issuecomment-18799734. I've completed every recommended step (I instrument my src, bundle it,...

Im having a few es6 files with .es6 extension and es5 files with .js extension. I use grunt for build. I use babel6 as transpiler. I get errors with experimental...

Hi, It would be nice to have an option that allows users to display informations about all the Javacript files that need to be tested. (With 0% coverage) The Istanbul...

Hello, I'm getting the aforementioned error when I run `grunt jasmine:coverage`. My instrumented js file size is 5012 KB. If I downsize it to around 4600 KB by removing some...