From e7c08d0fa7c2b03f09955af81147ddd8f809613e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Zaefferer?= Date: Sun, 29 Apr 2012 22:59:45 +0200 Subject: [PATCH] Grunt: Extend list of tests to run with TestSwarm --- grunt.js | 38 ++++++++++++++++++++++++++++++++++---- 1 file 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 #' + commit + '', 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" }); });