]> source.dussan.org Git - jquery-ui.git/commitdiff
Dev: remove all-active test runner as now all test suites can run cleanly!
authorMike Sherov <mike.sherov@gmail.com>
Fri, 9 Nov 2012 22:26:12 +0000 (17:26 -0500)
committerMike Sherov <mike.sherov@gmail.com>
Fri, 9 Nov 2012 22:26:12 +0000 (17:26 -0500)
grunt.js
tests/unit/all-active.html [deleted file]

index b596f43e71f5005189816ecae2becf9b55de5ef7..91293e6bc7258dc8c160c9513c506a84ffbd5424 100644 (file)
--- a/grunt.js
+++ b/grunt.js
@@ -281,7 +281,7 @@ grunt.initConfig({
                files: grunt.file.expandFiles( "tests/unit/**/*.html" ).filter(function( file ) {
                        // disabling everything that doesn't (quite) work with PhantomJS for now
                        // TODO except for all|index|test, try to include more as we go
-                       return !( /(all|all-active|index|test|dialog|tabs|tooltip)\.html$/ ).test( file );
+                       return !( /(all|index|test|dialog|tabs|tooltip)\.html$/ ).test( file );
                })
        },
        lint: {
diff --git a/tests/unit/all-active.html b/tests/unit/all-active.html
deleted file mode 100644 (file)
index d4d7a03..0000000
+++ /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>