diff --git a/Gruntfile.js b/Gruntfile.js index 62a553f78..0e68c900a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -86,6 +86,10 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-simple-mocha'); grunt.loadNpmTasks('grunt-contrib-jshint'); - grunt.registerTask('default', ['jshint:core','jshint:tests','jshint:editor','simplemocha:core','simplemocha:nodes']); + grunt.registerTask('default', ['test-core','test-editor','test-nodes']); + + grunt.registerTask('test-core', ['jshint:core','simplemocha:core']); + grunt.registerTask('test-editor', ['jshint:editor']); + grunt.registerTask('test-nodes', ['simplemocha:nodes']); };