Complete overhaul of the Ajax test suite, it's now passing in all browsers. In order...
[jquery.git] / build / runtest / test.js
1 // Init
2 load("build/runtest/env.js");
3
4 window.location = "test/index.html";
5
6 window.onload = function(){
7     // Load the test runner
8     load("dist/jquery.js","build/runtest/testrunner.js");
9     
10     // Load the tests
11     load(
12         "src/jquery/coreTest.js",
13         "src/selector/selectorTest.js",
14         "src/event/eventTest.js"
15         //"src/fx/fxTest.js",
16         //"src/ajax/ajaxTest.js"
17     );
18     
19     // Display the results
20     results();
21 };