chore(): build tests before karma-watch

This commit is contained in:
Tim Lancina
2016-03-02 15:43:21 -06:00
parent cbe9ed8c23
commit 626eae2131

View File

@ -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' })
});