Skip to content

Commit

Permalink
Don't run qunit task by default (instead require "grunt test").
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Feb 12, 2013
1 parent 5e14d3b commit d3bc91a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion grunt.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,8 @@ module.exports = function(grunt) {
});

// Default task.
grunt.registerTask('default', 'concat:dist lint min concat:post concat:post_min qunit' );
grunt.registerTask('default', 'concat:dist lint min concat:post concat:post_min');

// Test task.
grunt.registerTask('test', 'qunit');
};

0 comments on commit d3bc91a

Please sign in to comment.