mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Grunt: Refactor testswarm task and add an experimental testswarm-multi-jquery task for testing across jQuery versions
This commit is contained in:
parent
8e541f1bf6
commit
b657473178
@ -1,12 +1,7 @@
|
|||||||
|
/*jshint node: true */
|
||||||
module.exports = function( grunt ) {
|
module.exports = function( grunt ) {
|
||||||
|
|
||||||
grunt.registerTask( "testswarm", function( commit, configFile ) {
|
var tests = {
|
||||||
var test,
|
|
||||||
testswarm = require( "testswarm" ),
|
|
||||||
config = grunt.file.readJSON( configFile ).jqueryui,
|
|
||||||
testBase = config.testUrl + commit + "/tests/unit/",
|
|
||||||
testUrls = [],
|
|
||||||
tests = {
|
|
||||||
"Accordion": "accordion/accordion.html",
|
"Accordion": "accordion/accordion.html",
|
||||||
"Accordion_deprecated": "accordion/accordion_deprecated.html",
|
"Accordion_deprecated": "accordion/accordion_deprecated.html",
|
||||||
"Autocomplete": "autocomplete/autocomplete.html",
|
"Autocomplete": "autocomplete/autocomplete.html",
|
||||||
@ -31,6 +26,13 @@ grunt.registerTask( "testswarm", function( commit, configFile ) {
|
|||||||
"Tooltip": "tooltip/tooltip.html",
|
"Tooltip": "tooltip/tooltip.html",
|
||||||
"Widget": "widget/widget.html"
|
"Widget": "widget/widget.html"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function submit( commit, tests, configFile ) {
|
||||||
|
var test,
|
||||||
|
testswarm = require( "testswarm" ),
|
||||||
|
config = grunt.file.readJSON( configFile ).jqueryui,
|
||||||
|
testBase = config.testUrl + commit + "/tests/unit/",
|
||||||
|
testUrls = [];
|
||||||
for ( test in tests ) {
|
for ( test in tests ) {
|
||||||
testUrls.push( testBase + tests[ test ] + "?nojshint=true" );
|
testUrls.push( testBase + tests[ test ] + "?nojshint=true" );
|
||||||
}
|
}
|
||||||
@ -40,7 +42,7 @@ grunt.registerTask( "testswarm", function( commit, configFile ) {
|
|||||||
timeout: 1000 * 60 * 30,
|
timeout: 1000 * 60 * 30,
|
||||||
done: this.async()
|
done: this.async()
|
||||||
}, {
|
}, {
|
||||||
authUsername: "jqueryui",
|
authUsername: config.authUsername,
|
||||||
authToken: config.authToken,
|
authToken: config.authToken,
|
||||||
jobName: 'jQuery UI commit #<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>',
|
jobName: 'jQuery UI commit #<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>',
|
||||||
runMax: config.runMax,
|
runMax: config.runMax,
|
||||||
@ -48,6 +50,22 @@ grunt.registerTask( "testswarm", function( commit, configFile ) {
|
|||||||
"runUrls[]": testUrls,
|
"runUrls[]": testUrls,
|
||||||
"browserSets[]": ["popular"]
|
"browserSets[]": ["popular"]
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
grunt.registerTask( "testswarm", function( commit, configFile ) {
|
||||||
|
submit( commit, tests, configFile );
|
||||||
|
});
|
||||||
|
|
||||||
|
grunt.registerTask( "testswarm-multi-jquery", function( commit, configFile ) {
|
||||||
|
var test,
|
||||||
|
allTests = {};
|
||||||
|
for ( test in tests ) {
|
||||||
|
allTests[ test + "-1.6.3" ] = tests[ test ] + "?nojshint=true&jquery=1.6.3";
|
||||||
|
}
|
||||||
|
for ( test in tests ) {
|
||||||
|
allTests[ test + "-1.7.2" ] = tests[ test ] + "?nojshint=true&jquery=1.7.2";
|
||||||
|
}
|
||||||
|
submit( commit, allTests, configFile );
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user