Skip to content

Commit a9ec9d0

Browse files
committed
feat(test): rename pre-test task to instrument.
1 parent fd29092 commit a9ec9d0

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
@@ -102,13 +102,13 @@ gulp.task('compress-docs', ['docs'], function() {
102102
.pipe(gulp.dest('dist'));
103103
});
104104

105-
gulp.task('pre-test', function () {
105+
gulp.task('instrument', function () {
106106
return gulp.src(['lib/**/*.js'])
107107
.pipe(istanbul())
108108
.pipe(istanbul.hookRequire());
109109
});
110110

111-
gulp.task('test', ['pre-test'], function() {
111+
gulp.task('test', ['instrument'], function() {
112112
return gulp.src('test/*.js', {read: false})
113113
.pipe(order([
114114
'test.js',

0 commit comments

Comments
 (0)