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