Skip to content

Commit ca5d842

Browse files
committed
Grunt: Add grunt-junit, to replace qunit task in Jenkins context
1 parent 386bb72 commit ca5d842

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

grunt.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,11 @@ uiFiles.forEach(function( file ) {
8080
compareFiles[ file ] = [ file, mapMinFile( file ) ];
8181
});
8282

83-
// csslint and cssmin tasks
83+
// grunt plugins
8484
grunt.loadNpmTasks( "grunt-css" );
85-
// file size comparison tasks
86-
grunt.loadNpmTasks( "grunt-compare-size" );
87-
// html validation task
8885
grunt.loadNpmTasks( "grunt-html" );
86+
grunt.loadNpmTasks( "grunt-compare-size" );
87+
grunt.loadNpmTasks( "grunt-junit" );
8988
// local testswarm and build tasks
9089
grunt.loadTasks( 'build/tasks');
9190

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"grunt-css": "0.2.0",
3131
"grunt-compare-size": "0.1.4",
3232
"grunt-html": "0.1.1",
33+
"grunt-junit": "0.1.4",
3334
"request": "2.9.153",
3435
"rimraf": "2.0.1",
3536
"testswarm": "0.2.2"

0 commit comments

Comments
 (0)