00b85e41980f6897c96631f44f88449deac9f769
[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 };