From 38e6b53d6c1b64651ce4d131dcb8bcfce1d66c6a Mon Sep 17 00:00:00 2001 From: Paul Straw Date: Tue, 29 Dec 2015 14:10:55 -0800 Subject: [PATCH] Fix default `gulp` --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 2061542d..e84f6f5a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -37,7 +37,7 @@ function runKarmaTests(configObj, done, singleRun) { }).start(); } -gulp.task('default', ['build', 'test-headless-no-watch']); +gulp.task('default', ['build', 'test-headless']); gulp.task('build', ['build-js', 'build-css']); // When actually setting up CI stuff, this will need to run in sequence.