Skip to content

Commit

Permalink
fix(gulp): fixing gulp-ava task usage which didnt return the stream w…
Browse files Browse the repository at this point in the history
…hich is why it didnt emit the '
  • Loading branch information
lirantal committed Jan 1, 2017
1 parent 90b0c85 commit 3a36de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/gulpfile.js
Expand Up @@ -198,7 +198,7 @@ gulp.task('server:bootstrap', function(done) {
});

gulp.task('ava:test:integration', function() {
gulp.src(defaultAssets.server.test)
return gulp.src(defaultAssets.server.test)
// gulp-ava needs filepaths so you can't have any plugins before it
.pipe(plugins.ava({verbose: true}))
.on('error', function(err) {
Expand Down

0 comments on commit 3a36de1

Please sign in to comment.