aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2012-04-29 22:59:45 +0200
committerJörn Zaefferer <joern.zaefferer@gmail.com>2012-04-29 23:01:28 +0200
commite7c08d0fa7c2b03f09955af81147ddd8f809613e (patch)
tree46afde999741184ed2469b5c70e7bcc039200fe3 /grunt.js
parent57d18cd6b7a3d5a6a1b3436481a2fbe1d835eb29 (diff)
downloadjquery-ui-e7c08d0fa7c2b03f09955af81147ddd8f809613e.tar.gz
jquery-ui-e7c08d0fa7c2b03f09955af81147ddd8f809613e.zip
Grunt: Extend list of tests to run with TestSwarm
Diffstat (limited to 'grunt.js')
-rw-r--r--grunt.js38
1 files changed, 34 insertions, 4 deletions
diff --git a/grunt.js b/grunt.js
index 01c0071af..d3daac1bc 100644
--- a/grunt.js
+++ b/grunt.js
@@ -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"
});
});