jquery-ui/tests/unit/subsuite.js
2011-11-22 08:43:09 -05:00

22 lines
523 B
JavaScript

(function() {
var versions = [ "1.6", "1.6.1", "1.6.2", "1.6.3", "1.6.4", "1.7", "1.7.1", "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;
});
}));
};
}());