Browse Source

Fixes gulp coverage

patch-2
Esteban Ordano 10 years ago
parent
commit
2ab42595e4
  1. 12
      gulpfile.js

12
gulpfile.js

@ -56,15 +56,19 @@ gulp.task('watch:lint', function() {
});
gulp.task('coverage', function() {
gulp.src(files)
return gulp.src(files)
.pipe(istanbul())
.pipe(tap(function(f) {
// Make sure all files are loaded to get accurate coverage data
require(f.path);
}))
.on('end', testMocha.pipe(
istanbul.writeReports('coverage')
));
.on('end', function() {
gulp.src(tests)
.pipe(istanbul.writeReports('coverage'))
.pipe(new mocha({reporter: 'spec'}))
.on('end', function() {})
.on('error', ignoreError)
});
});
gulp.task('jsdoc', function() {

Loading…
Cancel
Save