diff options
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 3e9940f1c..aefc54512 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -157,9 +157,24 @@ module.exports = function( grunt ) { grunt.registerTask( "lint", [ "jshint", "jscs" ] ); + grunt.registerTask( "node_smoke_test", function() { + var done = this.async(); + require( "jsdom" ).env( "", function( errors, window ) { + if ( errors ) { + console.error( errors ); + done( false ); + } + require( "./" )( window ); + done(); + }); + }); + // Short list as a high frequency watch task grunt.registerTask( "dev", [ "build:*:*", "lint" ] ); - // Default grunt + grunt.registerTask( "test_fast", [ "node_smoke_test" ] ); + + grunt.registerTask( "test", [ "default", "test_fast" ] ); + grunt.registerTask( "default", [ "jsonlint", "dev", "uglify", "dist:*", "compare_size" ] ); }; |