aboutsummaryrefslogtreecommitdiffstats
path: root/lib/grunt/plugins.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/grunt/plugins.js')
-rw-r--r--lib/grunt/plugins.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/grunt/plugins.js b/lib/grunt/plugins.js
index c67aa545..b423b61f 100644
--- a/lib/grunt/plugins.js
+++ b/lib/grunt/plugins.js
@@ -50,12 +50,12 @@ module.exports = function(grunt) {
});
- grunt.registerMultiTask('test', 'Run the unit tests with testacular', function(){
- util.startTestacular.call(util, this.data, true, this.async());
+ grunt.registerMultiTask('test', 'Run the unit tests with Karma', function(){
+ util.startKarma.call(util, this.data, true, this.async());
});
- grunt.registerMultiTask('autotest', 'Run and watch the unit tests with testacular', function(){
- util.startTestacular.call(util, this.data, false, this.async());
+ grunt.registerMultiTask('autotest', 'Run and watch the unit tests with Karma', function(){
+ util.startKarma.call(util, this.data, false, this.async());
});
};