mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Grunt: Add all jQuery versions to test 1.9 beta against to testswarm-multi-jquery task
This commit is contained in:
parent
42599a6001
commit
7419a915b2
@ -62,14 +62,12 @@ grunt.registerTask( "testswarm", function( commit, configFile ) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile ) {
|
grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile ) {
|
||||||
var test,
|
var allTests = {};
|
||||||
allTests = {};
|
"1.6 1.6.1 1.6.3 1.6.4 1.7 1.7.1 1.7.2 git".split(" ").forEach(function( version ) {
|
||||||
for ( test in tests ) {
|
for ( var test in tests ) {
|
||||||
allTests[ test + "-1.6.3" ] = tests[ test ] + "?nojshint=true&jquery=1.6.3";
|
allTests[ test + "-" + version ] = tests[ test ] + "?nojshint=true&jquery=" + version;
|
||||||
}
|
}
|
||||||
for ( test in tests ) {
|
});
|
||||||
allTests[ test + "-1.7.2" ] = tests[ test ] + "?nojshint=true&jquery=1.7.2";
|
|
||||||
}
|
|
||||||
submit( commit, allTests, configFile, this.async() );
|
submit( commit, allTests, configFile, this.async() );
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user