]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
fix: use callback function in test tasks
authorDaniel Ruf <daniel@daniel-ruf.de>
Mon, 2 Apr 2018 22:01:41 +0000 (00:01 +0200)
committerDaniel Ruf <daniel@daniel-ruf.de>
Mon, 2 Apr 2018 22:01:41 +0000 (00:01 +0200)
gulp/tasks/test.js

index 3ed2ef6588a4307f9f26fcf0ba42408b2564d4a8..dc4b133f3995ec0ae177012d9af2fa5b41cbe532 100644 (file)
@@ -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