commitUrl = "https://github.com/jquery/jquery-ui/commit/" + commit;
if ( extra ) {
- extra = " " + extra;
+ extra = " (" + extra + ")";
}
for ( testName in runs ) {
runs[ testName ] = config.testUrl + commit + "/tests/unit/" + runs[ testName ];
}
+
testswarm.createClient({
url: config.swarmUrl,
pollInterval: 10000,
token: config.authToken
})
.addjob({
- name: "jQuery UI #<a href='" + commitUrl + "'>" + commit.substr( 0, 10 ) + "</a>" + extra,
+ name: "Commit <a href='" + commitUrl + "'>" + commit.substr( 0, 10 ) + "</a>" + extra,
runs: runs,
runMax: config.runMax,
browserSets: config.browserSets
for ( test in tests ) {
latestTests[ test ] = tests[ test ] + "?nojshint=true";
}
- submit( commit, latestTests, configFile, "", this.async() );
+ submit( commit, latestTests, configFile, false, this.async() );
});
grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile, minor ) {