From 1a4ab2c57acc8ce85e02ae6d088b91758685aebd Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 11 May 2015 12:08:05 -0700 Subject: [PATCH] build(gulp): remove the check-format step from test.unit.js task --- gulpfile.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index e988f43a6e..14a3697d02 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -379,8 +379,7 @@ gulp.task('test.unit.js', ['build.js.dev'], function (neverDone) { watch('modules/**', function() { runSequence( '!broccoli.js.dev', - '!test.unit.js/karma-run', - 'check-format' + '!test.unit.js/karma-run' ); }); });