Add JS files
This commit is contained in:
25
include/jQuery/jquery-ui/tests/unit/subsuite.js
vendored
Executable file
25
include/jQuery/jquery-ui/tests/unit/subsuite.js
vendored
Executable file
@@ -0,0 +1,25 @@
|
||||
(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;
|
||||
});
|
||||
}));
|
||||
};
|
||||
|
||||
}());
|
||||
Reference in New Issue
Block a user