aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMatias Niemelä2013-08-01 16:14:52 -0400
committerIgor Minar2013-08-08 23:50:28 -0700
commit05b41eedce679a65cf7beac8b19d891721f93323 (patch)
treec3c2502152be3a0489d595b4a52ee0caf1e628dc /lib
parentf80730f497cb1ecb78a814f01df79b69223ad633 (diff)
downloadangular.js-05b41eedce679a65cf7beac8b19d891721f93323.tar.bz2
fix(grunt): ensure all dependent tasks are called for all test task
Close #3421
Diffstat (limited to 'lib')
-rw-r--r--lib/grunt/plugins.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/grunt/plugins.js b/lib/grunt/plugins.js
index a17f62cc..33c52abf 100644
--- a/lib/grunt/plugins.js
+++ b/lib/grunt/plugins.js
@@ -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());
});