jquery-ui/tests/unit/subsuite.js
Michał Gołębiowski 15586ea752 Build: Use jquery-git in place of jquery-compat-git
jQuery Compat is not going to get released after all; jQuery UI should be tested
against jquery-git instead of jquery-compat-git.

Closes gh-1646
2015-11-14 06:12:55 -05:00

27 lines
547 B
JavaScript

( function() {
var versions = [
"1.7.0", "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",
"1.11.0", "1.11.1", "1.11.2", "1.11.3",
"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;
} );
} ) );
};
}() );