chore(Gruntfile): remove jasmine_node (not needed atm)

This commit is contained in:
Nico Rehwaldt 2014-04-08 13:41:03 +02:00
parent 06cf214249
commit 0cc8599b56
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ module.exports = function(grunt) {
'watch'
]);
grunt.registerTask('auto-test', [ 'jasmine_node', 'watch:jasmine_node' ]);
grunt.registerTask('auto-test', [ 'karma:unit' ]);
grunt.registerTask('default', [ 'jshint', 'test', 'build', 'jsdoc' ]);
};