Skip to content

Commit 3a36de1

Browse files
committed
fix(gulp): fixing gulp-ava task usage which didnt return the stream which is why it didnt emit the '
1 parent 90b0c85 commit 3a36de1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ gulp.task('server:bootstrap', function(done) {
198198
});
199199

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

0 commit comments

Comments
 (0)