@@ -41,12 +41,13 @@ function submit( commit, runs, configFile, extra, done ) {
41
41
commitUrl = "https://github.com/jquery/jquery-ui/commit/" + commit ;
42
42
43
43
if ( extra ) {
44
- extra = " " + extra ;
44
+ extra = " ( " + extra + ")" ;
45
45
}
46
46
47
47
for ( testName in runs ) {
48
48
runs [ testName ] = config . testUrl + commit + "/tests/unit/" + runs [ testName ] ;
49
49
}
50
+
50
51
testswarm . createClient ( {
51
52
url : config . swarmUrl ,
52
53
pollInterval : 10000 ,
@@ -58,7 +59,7 @@ function submit( commit, runs, configFile, extra, done ) {
58
59
token : config . authToken
59
60
} )
60
61
. addjob ( {
61
- name : "jQuery UI # <a href='" + commitUrl + "'>" + commit . substr ( 0 , 10 ) + "</a>" + extra ,
62
+ name : "Commit <a href='" + commitUrl + "'>" + commit . substr ( 0 , 10 ) + "</a>" + extra ,
62
63
runs : runs ,
63
64
runMax : config . runMax ,
64
65
browserSets : config . browserSets
@@ -76,7 +77,7 @@ grunt.registerTask( "testswarm", function( commit, configFile ) {
76
77
for ( test in tests ) {
77
78
latestTests [ test ] = tests [ test ] + "?nojshint=true" ;
78
79
}
79
- submit ( commit , latestTests , configFile , "" , this . async ( ) ) ;
80
+ submit ( commit , latestTests , configFile , false , this . async ( ) ) ;
80
81
} ) ;
81
82
82
83
grunt . registerTask ( "testswarm-multi-jquery" , function ( commit , configFile , minor ) {
0 commit comments