mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
21 lines
532 B
JavaScript
21 lines
532 B
JavaScript
(function() {
|
|
|
|
var versions = [ "1.6", "1.6.1", "1.6.2", "1.6.3", "1.6.4", "1.7", "1.7.1", "1.7.2", "git" ],
|
|
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;
|
|
});
|
|
}));
|
|
};
|
|
|
|
}());
|