Skip to content

Commit

Permalink
grunt.js testswarm task: shorten job name
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle authored and scottgonzalez committed May 7, 2012
1 parent a7e143b commit 730e345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grunt.js
Expand Up @@ -381,8 +381,8 @@ grunt.registerTask( "testswarm", function( commit, configFile ) {
}, {
authUsername: "jqueryui",
authToken: grunt.file.readJSON( configFile ).jqueryui.authToken,
jobName: 'jQuery UI commit #<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit + '</a>',
runMax: 4,
jobName: 'jQuery UI commit #<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>',
runMax: 3,
"runNames[]": Object.keys(tests),
"runUrls[]": testUrls,
"browserSets[]": ["popular"]
Expand Down

0 comments on commit 730e345

Please sign in to comment.