2ef4093cf7
r of bugs in the suite itself, along with other random bugs that popped up. The following bugs were resolved along the wa y: #1236 (.extend() keeps processing when it hits nulls), #1028 (.extend() now works recursively), #1080 ($.get no longer overwrites the data parameter), #1210 (Creating script and link tags now work), and #1463 (jQuery.global has been re-too led to no longer leak memory and slow things down).
22 lines
455 B
JavaScript
22 lines
455 B
JavaScript
// Init
|
|
load("build/runtest/env.js");
|
|
|
|
window.location = "test/index.html";
|
|
|
|
window.onload = function(){
|
|
// Load the test runner
|
|
load("dist/jquery.js","build/runtest/testrunner.js");
|
|
|
|
// Load the tests
|
|
load(
|
|
"src/jquery/coreTest.js",
|
|
"src/selector/selectorTest.js",
|
|
"src/event/eventTest.js"
|
|
//"src/fx/fxTest.js",
|
|
//"src/ajax/ajaxTest.js"
|
|
);
|
|
|
|
// Display the results
|
|
results();
|
|
};
|