Grunt: Extend list of tests to run with TestSwarm

This commit is contained in:
Jörn Zaefferer 2012-04-29 22:59:45 +02:00
parent 57d18cd6b7
commit e7c08d0fa7

View File

@ -336,8 +336,38 @@ grunt.initConfig({
});
grunt.registerTask( "testswarm", function( commit, authToken ) {
var testswarm = require( "testswarm" );
var testBase = "http://swarm.jquery.org/git/jquery-ui/" + commit + "/";
var test,
testswarm = require( "testswarm" ),
testBase = "http://swarm.jquery.org/git/jquery-ui/" + commit + "/",
testUrls = [],
tests = {
"Accordion": "accordion/accordion.html",
"Accordion_deprecated": "accordion/accordion_deprecated.html",
"Autocomplete": "autocomplete/autocomplete.html",
"Button": "button/button.html",
"Core": "core/core.html",
//"datepicker/datepicker.html",
//"dialog/dialog.html",
//"draggable/draggable.html",
//"droppable/droppable.html",
"Effects": "effects/effects.html",
"Menu": "menu/menu.html",
"Position": "position/position.html",
"Position_deprecated": "position/position_deprecated.html",
"Progressbar": "progressbar/progressbar.html",
//"resizable/resizable.html",
//"selectable/selectable.html",
//"slider/slider.html",
//"sortable/sortable.html",
"Spinner": "spinner/spinner.html",
"Tabs": "tabs/tabs.html",
"Tabs_deprecated": "tabs/tabs_deprecated.html",
"Tooltip": "tooltip/tooltip.html",
"Widget": "widget/widget.html"
};
for (test in tests) {
testUrls.push( testBase + tests[ test ] );
}
testswarm({
url: "http://swarm.jquery.org/api.php?",
pollInterval: 2000,
@ -347,8 +377,8 @@ grunt.registerTask( "testswarm", function( commit, authToken ) {
authToken: authToken,
jobName: 'jQuery UI commit #<a href="https://github.com/jquery/jquery-ui/commit/' + commit + '">' + commit + '</a>',
runMax: 1,
"runNames[]": ["Accordion", "Autocomplete"],
"runUrls[]": [ testBase + "tests/unit/accordion/accordion.html", testBase + "tests/unit/autocomplete/autocomplete.html" ],
"runNames[]": Object.keys(tests),
"runUrls[]": testUrls,
browserSets: "popular"
});
});