Skip to content

Commit e57a1e4

Browse files
authored
Update gulpfile.js
1 parent b402e7a commit e57a1e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ gulp.task('default', function () {
1111
//.pipe(istanbul.hookRequire());
1212

1313
gulp.src('tests/**/*.js')
14-
.pipe(istanbul())
15-
.pipe(istanbul.hookRequire())
1614
.pipe(mocha({
1715
reporter: 'mocha-junit-reporter',
1816
reporterOptions{
1917
         mochaFile'./TEST-RESULTS.xml'
2018
}
2119
}))
20+
.pipe(istanbul())
21+
.pipe(istanbul.hookRequire())
2222
.pipe(istanbul.writeReports({ // my change
2323
dir: './coverage',
2424
reporters: ['cobertura', 'html', 'json']

0 commit comments

Comments
 (0)