Skip to content

Commit

Permalink
returns not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
pawurb committed Aug 7, 2014
1 parent 593066e commit 4c3cbb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ gulp.task('default', function() {
});

gulp.task('lint', function() {
return gulp.src(['./lib/*.js', './test/*.js'])
gulp.src(['./lib/*.js', './test/*.js'])
.pipe(jshint())
.pipe(jshint.reporter('default'));
});

gulp.task('test', function () {
return gulp.src('./test/*_test.js', {read: false})
gulp.src('./test/*_test.js', {read: false})
.pipe(mocha({reporter: 'nyan'}));
});
});

0 comments on commit 4c3cbb8

Please sign in to comment.