问题
I am using gulp-istanbul to generate JavaScript unit test coverage reports through Gulp. Is there a way to configure Istanbul to generate a full coverage report of all the JS files in my gulp stream, and not just the files touched by a test case.
I'm working on a project with a lot of JS, but no unit tests, and we are trying to increase the test coverage. I would like to have a coverage report that starts by show 0% coverage for most of our files, but over time will present an increasing coverage percentage.
gulp.task( 'test', function () {
gulp.src( [ my source glob ] )
.pipe( istanbul() )
.on( 'end', function () {
gulp.src( [ my test spec glob ] )
.pipe( mocha( {
reporter: 'spec'
} ) )
.pipe( istanbul.writeReports(
[ output location ]
) );
} );
} );
回答1:
It actually is much more simple now and you just have to add includeUntested
to your istanbul()
call.
gulp.task('test', function () {
return gulp.src('./assets/**/js/*.js')
// Right there
.pipe(istanbul({includeUntested: true}))
.on('finish', function () {
gulp.src('./assets/js/test/test.js')
.pipe(mocha({reporter: 'spec'}))
.pipe(istanbul.writeReports({
dir: './assets/unit-test-coverage',
reporters: [ 'lcov' ],
reportOpts: { dir: './assets/unit-test-coverage'}
}));
});
});
Source : https://github.com/SBoudrias/gulp-istanbul#includeuntested
回答2:
Istanbul hook is executed when the file is required. So, you need to require all files in order for them to be included in the final coverage report. You can achieve this by injecting a tap inside your gulp task and call require on all selected files:
gulp.task( 'test', function () {
gulp.src( [ my source glob ] )
.pipe( istanbul() )
.pipe(tap(function(f) {
// Make sure all files are loaded to get accurate coverage data
require(f.path);
}))
.on( 'end', function () {
gulp.src( [ my test spec glob ] )
.pipe( mocha( {
reporter: 'spec'
} ) )
.pipe( istanbul.writeReports(
[ output location ]
) );
} );
} );
回答3:
I've been struggling with this today and found no answers on Google. I finally came up with an answer very similar to an answer here but the writeReports call must go before the call to mocha.
gulp.task('test', ['build'], function(done) {
gulp.src('lib/**/*.js')
.pipe($.istanbul({ includeUntested: true }))
.on('end', function() {
gulp.src(['test/helpers/**/*.coffee', 'test/spec/**/*.coffee'])
.pipe($.istanbul.writeReports({
dir: './coverage',
reportOpts: {
dir: './coverage'
},
reporters: ['html']
})).pipe($.mocha({
reporter: 'spec',
require: 'coffee-script/register'
}));
});
});
There is a ticket related to this which I found referenced in the gulp-istanbul code just before some voodoo magic to make things work: https://github.com/gotwarlost/istanbul/issues/112
回答4:
to show the coverage in all files you must do 2 things:
All files in the project should be included in the
[my source glob]
.All files must be required, in other words, the
require()
must be called on all files in the project, because istanbul probably changes the defaultrequire()
in order to calculate the coverage in a file.
You can write something like this at the start of the test file:
for([all .js files in project]){
require([file])
}
You can use require-dir for that.
And use this instead:
var requireDir = require('require-dir');
var dir = requireDir('./projectFolder', {recurse: true});
来源:https://stackoverflow.com/questions/22702578/full-gulp-istanbul-coverage-report