diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-06-09 17:30:52 +0200 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-06-13 23:42:53 +0200 |
commit | ca5d84258497ca3ca2f087fe32840a7839fc51df (patch) | |
tree | d058c192dd89bb090f949d6d1422efab76ed2214 | |
parent | 386bb7214b0d52a9e88c3c2158b4b9894dca6b1c (diff) | |
download | jquery-ui-ca5d84258497ca3ca2f087fe32840a7839fc51df.tar.gz jquery-ui-ca5d84258497ca3ca2f087fe32840a7839fc51df.zip |
Grunt: Add grunt-junit, to replace qunit task in Jenkins context
-rw-r--r-- | grunt.js | 7 | ||||
-rw-r--r-- | package.json | 1 |
2 files changed, 4 insertions, 4 deletions
@@ -80,12 +80,11 @@ uiFiles.forEach(function( file ) { compareFiles[ file ] = [ file, mapMinFile( file ) ]; }); -// csslint and cssmin tasks +// grunt plugins grunt.loadNpmTasks( "grunt-css" ); -// file size comparison tasks -grunt.loadNpmTasks( "grunt-compare-size" ); -// html validation task grunt.loadNpmTasks( "grunt-html" ); +grunt.loadNpmTasks( "grunt-compare-size" ); +grunt.loadNpmTasks( "grunt-junit" ); // local testswarm and build tasks grunt.loadTasks( 'build/tasks'); diff --git a/package.json b/package.json index 8a83f3f94..0070bd65c 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "grunt-css": "0.2.0", "grunt-compare-size": "0.1.4", "grunt-html": "0.1.1", + "grunt-junit": "0.1.4", "request": "2.9.153", "rimraf": "2.0.1", "testswarm": "0.2.2" |