jquery-ui/tests/unit/all.html

67 lines
1.4 KiB
HTML
Raw Normal View History

2011-07-26 16:15:02 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Test Suite</title>
<script src="../../jquery.js"></script>
2011-07-26 16:15:02 +00:00
<link rel="stylesheet" href="../../external/qunit.css">
<link rel="stylesheet" href="qunit-composite.css">
2011-07-26 16:15:02 +00:00
<script src="../../external/qunit.js"></script>
<script src="qunit-composite.js"></script>
2011-07-26 16:15:02 +00:00
<script>
(function() {
var params = [],
suites = [
"accordion/accordion.html",
"autocomplete/autocomplete.html",
"button/button.html",
"core/core.html",
"core/core_deprecated.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 );
}());
2011-07-26 16:15:02 +00:00
</script>
</head>
<body>
2014-02-20 16:02:23 +00:00
<div id="qunit"></div>
2011-07-26 16:15:02 +00:00
<div id="qunit-fixture">
</div>
</body>
</html>