From 5db6cf24ecd894061553de4aec92d2c48acf8f44 Mon Sep 17 00:00:00 2001 From: Tyler Kellen Date: Mon, 19 Nov 2012 16:25:04 -0500 Subject: [PATCH] fix test suite in gruntfile --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2dce6de..7f67727 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -74,9 +74,9 @@ module.exports = function(grunt) { // Whenever the "test" task is run, first clean the "tmp" dir, then run this // plugin's task(s), then test the result. - grunt.registerTask('test', ['nodeunit']); + grunt.registerTask('test', ['clean', 'jst', 'nodeunit']); // By default, lint and run all tests. - grunt.registerTask('default', ['jst', 'test', 'build-contrib']); + grunt.registerTask('default', ['jshint', 'test', 'build-contrib']); -}; \ No newline at end of file +};