diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2012-11-09 17:26:12 -0500 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2012-11-09 17:26:12 -0500 |
commit | 00e92e16b4f4a9f30cb12bbdc23aeba97d17203d (patch) | |
tree | 3a12fc6e6d0a0e3fd5fe25f7418d502ab33406ba /tests | |
parent | cc5c2aad96283bc11b418e9b38d034c4c919937b (diff) | |
download | jquery-ui-00e92e16b4f4a9f30cb12bbdc23aeba97d17203d.tar.gz jquery-ui-00e92e16b4f4a9f30cb12bbdc23aeba97d17203d.zip |
Dev: remove all-active test runner as now all test suites can run cleanly!
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/all-active.html | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/tests/unit/all-active.html b/tests/unit/all-active.html deleted file mode 100644 index d4d7a0376..000000000 --- a/tests/unit/all-active.html +++ /dev/null @@ -1,69 +0,0 @@ -<!doctype html> -<html lang="en"> -<head> - <meta charset="utf-8"> - <title>jQuery UI Test Suite</title> - - <script src="../../jquery-1.8.2.js"></script> - - <link rel="stylesheet" href="../../external/qunit.css"> - <link rel="stylesheet" href="qunit-composite.css"> - <script src="../../external/qunit.js"></script> - <script src="qunit-composite.js"></script> - - <script> - (function() { - - var params = [], - suites = [ - "accordion/accordion.html", - "autocomplete/autocomplete.html", - "button/button.html", - "core/core.html", - "datepicker/datepicker.html", - "dialog/dialog.html", - "draggable/draggable.html", - "droppable/droppable.html", - "effects/effects.html", - "menu/menu.html", - "position/position.html", - "progressbar/progressbar.html", - "resizable/resizable.html", - "selectable/selectable.html", - "slider/slider.html", - "sortable/sortable.html", - "spinner/spinner.html", - "tabs/tabs.html", - "tooltip/tooltip.html", - "widget/widget.html" - ]; - - $.each( QUnit.urlParams, function( key, value ) { - if ( key === "filter" ) { - return; - } - params.push( encodeURIComponent( key ) + "=" + encodeURIComponent( value ) ); - }); - if ( params.length ) { - params = "?" + params.join( "&" ); - suites = $.map( suites, function( suite ) { - return suite + params; - }); - } - QUnit.testSuites( suites ); - - }()); - </script> -</head> -<body> - -<h1 id="qunit-header">jQuery UI Test Suite</h1> -<h2 id="qunit-banner"></h2> -<div id="qunit-testrunner-toolbar"></div> -<h2 id="qunit-userAgent"></h2> -<ol id="qunit-tests"></ol> -<div id="qunit-fixture"> - -</div> -</body> -</html> |