mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
22 lines
489 B
JavaScript
22 lines
489 B
JavaScript
|
(function() {
|
||
|
|
||
|
var versions = [ "1.6", "1.6.1", "1.6.2", "git" ];
|
||
|
|
||
|
var additionalTests = {
|
||
|
accordion: [ "accordion_deprecated.html" ],
|
||
|
position: [ "position_deprecated.html" ],
|
||
|
tabs: [ "tabs_deprecated.html" ]
|
||
|
};
|
||
|
|
||
|
window.testAllVersions = function( widget ) {
|
||
|
QUnit.testSuites( $.map(
|
||
|
[ widget + ".html" ].concat( additionalTests[ widget ] || [] ),
|
||
|
function( test ) {
|
||
|
return $.map( versions, function( version ) {
|
||
|
return test + "?jquery=" + version;
|
||
|
});
|
||
|
}));
|
||
|
};
|
||
|
|
||
|
}());
|