aboutsummaryrefslogtreecommitdiffstats
path: root/build/runtest/test.js
blob: a9721620400c462d7d57d928602526f6a66f999d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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(
        "test/unit/core.js",
        "test/unit/selector.js",
        "test/unit/event.js"
        //"test/unit/fx.js",
        //"test/unit/ajax.js"
    );
    
    // Display the results
    results();
};