diff --git a/tasks/gulp-tests.js b/tasks/gulp-tests.js index 5bd5789689..09213df410 100644 --- a/tasks/gulp-tests.js +++ b/tasks/gulp-tests.js @@ -58,9 +58,7 @@ gulp.task('test:common:clean', (cb) => { pipe(exec(testBin("mocha test/common"), () => cb())); }); -gulp.task('test:common:watch', [ - 'test:common:clean' -], () => { +gulp.task('test:common:watch', ['test:common:clean'], () => { gulp.watch(['common/script/**', 'test/common/**'], ['test:common:clean']); });