fix(grunt): ensure all dependent tasks are called for all test task

Close #3421
This commit is contained in:
Matias Niemelä
2013-08-01 16:14:52 -04:00
committed by Igor Minar
parent f80730f497
commit 05b41eedce
2 changed files with 16 additions and 10 deletions

View File

@@ -52,7 +52,7 @@ module.exports = function(grunt) {
});
grunt.registerMultiTask('test', 'Run the unit tests with Karma', function(){
grunt.registerMultiTask('tests', 'Run the unit tests with Karma', function(){
util.startKarma.call(util, this.data, true, this.async());
});