Skip to content

Commit

Permalink
Grunt: Add grunt-junit, to replace qunit task in Jenkins context
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Jun 13, 2012
1 parent 386bb72 commit ca5d842
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 3 additions & 4 deletions grunt.js
Expand Up @@ -80,12 +80,11 @@ uiFiles.forEach(function( file ) {
compareFiles[ file ] = [ file, mapMinFile( file ) ]; compareFiles[ file ] = [ file, mapMinFile( file ) ];
}); });


// csslint and cssmin tasks // grunt plugins
grunt.loadNpmTasks( "grunt-css" ); grunt.loadNpmTasks( "grunt-css" );
// file size comparison tasks
grunt.loadNpmTasks( "grunt-compare-size" );
// html validation task
grunt.loadNpmTasks( "grunt-html" ); grunt.loadNpmTasks( "grunt-html" );
grunt.loadNpmTasks( "grunt-compare-size" );
grunt.loadNpmTasks( "grunt-junit" );
// local testswarm and build tasks // local testswarm and build tasks
grunt.loadTasks( 'build/tasks'); grunt.loadTasks( 'build/tasks');


Expand Down
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -30,6 +30,7 @@
"grunt-css": "0.2.0", "grunt-css": "0.2.0",
"grunt-compare-size": "0.1.4", "grunt-compare-size": "0.1.4",
"grunt-html": "0.1.1", "grunt-html": "0.1.1",
"grunt-junit": "0.1.4",
"request": "2.9.153", "request": "2.9.153",
"rimraf": "2.0.1", "rimraf": "2.0.1",
"testswarm": "0.2.2" "testswarm": "0.2.2"
Expand Down

0 comments on commit ca5d842

Please sign in to comment.