From 92d6aa1f324577b9d239fc6ea7a4866c1ff6c48b Mon Sep 17 00:00:00 2001 From: vsavkin Date: Mon, 11 May 2015 12:33:41 -0700 Subject: [PATCH] fix(gulpfile): fixed test.unit.dart to format dart code before running test --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index a3132e239f..d1d07c3ef6 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -417,6 +417,7 @@ gulp.task('test.unit.dart', ['build/tree.dart'], function (done) { watch('modules/angular2/**', function() { runSequence( '!build/tree.dart', + 'build/format.dart', '!test.unit.dart/karma-run' ); });