diff options
| author | Vojta Jina | 2013-03-20 18:57:13 -0700 |
|---|---|---|
| committer | Igor Minar | 2013-04-03 18:22:03 -0700 |
| commit | 91fa865bf22afdf4b25a20acce7a8c7f7d331323 (patch) | |
| tree | b450929dfc4cba0b80deec58927a779939dfbdfb /lib/grunt/plugins.js | |
| parent | 10ae76673c200511f5da5aa1d5bea200b7be0fda (diff) | |
| download | angular.js-91fa865bf22afdf4b25a20acce7a8c7f7d331323.tar.bz2 | |
chore: use Karma
Diffstat (limited to 'lib/grunt/plugins.js')
| -rw-r--r-- | lib/grunt/plugins.js | 8 |
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()); }); }; |
