From 626eae213129247c782bfc76e30ee80cab38a817 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Wed, 2 Mar 2016 15:43:21 -0600 Subject: [PATCH] chore(): build tests before karma-watch --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index d2e2928fc9..e63fb21815 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -674,7 +674,7 @@ gulp.task('karma', ['tests'], function() { return karma.start({ configFile: __dirname + '/scripts/karma/karma.conf.js' }) }); -gulp.task('karma-watch', function() { +gulp.task('karma-watch', ['tests'], function() { var karma = require('karma').server; return karma.start({ configFile: __dirname + '/scripts/karma/karma-watch.conf.js' }) });