jquery-ui/tests/unit/subsuite.js
Bruno M. Custódio 0d5eaab9bb Updating jQuery to 1.10.2.
Adding jQuery 1.10.0, 1.10.1, 1.10.2, 2.0.0, 2.0.1, 2.0.2 and 2.0.3 to the
tests directory.
2013-07-05 08:42:37 -04:00

26 lines
556 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",
"1.8.0", "1.8.1", "1.8.2", "1.8.3",
"1.9.0", "1.9.1",
"1.10.0", "1.10.1", "1.10.2",
"git"
],
additionalTests = {
// component: [ "other_test.html" ]
};
window.testAllVersions = function( widget ) {
QUnit.testSuites( $.map(
[ widget + ".html" ].concat( additionalTests[ widget ] || [] ),
function( test ) {
return $.map( versions, function( version ) {
return test + "?jquery=" + version;
});
}));
};
}());