diff options
author | Hakim El Hattab | 2013-08-22 20:31:52 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-22 20:31:52 -0400 |
commit | 502b26ecf02839bc24f9e47d08d5439aee24ad9c (patch) | |
tree | 276d52cd36ad5be7c6e092add04f6283c81f6c8c /Gruntfile.js | |
parent | b3db69745d05c8180258d3fa6efed9f790cd4317 (diff) |
run unit tests as part of grunt build and ci
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 79e87b3..5daa4e5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -119,7 +119,7 @@ module.exports = function(grunt) { grunt.loadNpmTasks( 'grunt-zip' ); // Default task - grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify' ] ); + grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify', 'qunit' ] ); // Theme task grunt.registerTask( 'themes', [ 'sass' ] ); |