aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorMatias Niemelä2013-08-04 11:40:24 -0400
committerIgor Minar2013-08-08 23:53:09 -0700
commit953fa4cd1631e77cd8ddf321b968fcbd9e3a10f2 (patch)
treee3bb33a3d38fac22f803b557ad0ba6455b0451ce /Gruntfile.js
parent05b41eedce679a65cf7beac8b19d891721f93323 (diff)
downloadangular.js-953fa4cd1631e77cd8ddf321b968fcbd9e3a10f2.tar.bz2
chore(grunt): fix up the help text for the new test commands
Closes #3421
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index b79467ca..64163525 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -230,13 +230,13 @@ module.exports = function(grunt) {
//alias tasks
- grunt.registerTask('test', ['package','test:unit', 'tests:docs', 'test:e2e']);
- grunt.registerTask('test:jqlite', ['tests:jqlite']);
- grunt.registerTask('test:jquery', ['tests:jquery']);
- grunt.registerTask('test:modules', ['tests:modules']);
- grunt.registerTask('test:docs', ['package', 'tests:docs']);
- grunt.registerTask('test:unit', ['tests:jqlite', 'tests:jquery', 'tests:modules']);
- grunt.registerTask('test:e2e', ['connect:testserver', 'tests:end2end']);
+ grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['package','test:unit', 'tests:docs', 'test:e2e']);
+ grunt.registerTask('test:jqlite', 'Run the unit tests with Karma' , ['tests:jqlite']);
+ grunt.registerTask('test:jquery', 'Run the jQuery unit tests with Karma', ['tests:jquery']);
+ grunt.registerTask('test:modules', 'Run the Karma module tests with Karma', ['tests:modules']);
+ grunt.registerTask('test:docs', 'Run the doc-page tests with Karma', ['package', 'tests:docs']);
+ grunt.registerTask('test:unit', 'Run unit, jQuery and Karma module tests with Karma', ['tests:jqlite', 'tests:jquery', 'tests:modules']);
+ grunt.registerTask('test:e2e', 'Run the end to end tests with Karma and keep a test server running in the background', ['connect:testserver', 'tests:end2end']);
grunt.registerTask('test:docgen', ['jasmine-node']);
grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);