From f961d44fd7f2af2fb8de1cd1d142b8e1609f9249 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Fri, 31 Oct 2014 10:06:48 -0400 Subject: [PATCH] Watch all coffee files for running test --- gulpfile.coffee | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulpfile.coffee b/gulpfile.coffee index e47a04cb..ecf4706c 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -25,5 +25,4 @@ gulp.task 'lint', -> .pipe(coffeelint.reporter()) gulp.task 'watch', [ 'test', 'lint' ], -> - gulp.watch(OPTIONS.files.tests, [ 'test' ]) - gulp.watch(OPTIONS.files.coffee, [ 'lint' ]) + gulp.watch(OPTIONS.files.coffee, [ 'test', 'lint' ])