From 6144786090f11955272aedcfe8006a044fcf560a Mon Sep 17 00:00:00 2001 From: Daniel Ruf Date: Tue, 3 Apr 2018 00:01:41 +0200 Subject: [PATCH] fix: use callback function in test tasks --- gulp/tasks/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulp/tasks/test.js b/gulp/tasks/test.js index 3ed2ef658..dc4b133f3 100644 --- a/gulp/tasks/test.js +++ b/gulp/tasks/test.js @@ -23,7 +23,7 @@ gulp.task('test', function(cb) { } }); gulp.watch(['test/visual/**/*'], ['test:reload']); -}, cb) +}) }); gulp.task('test:reload', function(done) { @@ -40,5 +40,5 @@ gulp.task('test:transpile-js', function(cb) { .on('error', onBabelError)) .pipe(concat('js-tests.js')) .pipe(gulp.dest('test/javascript')); -}, cb) +}) }); \ No newline at end of file -- 2.47.2