2007-07-08 07:00:24 +02:00
|
|
|
// Init
|
|
|
|
load("build/runtest/env.js");
|
|
|
|
|
2007-07-09 18:14:19 +02:00
|
|
|
window.location = "test/index.html";
|
2007-07-08 07:00:24 +02:00
|
|
|
|
2007-07-09 18:14:19 +02:00
|
|
|
window.onload = function(){
|
|
|
|
// Load the test runner
|
|
|
|
load("dist/jquery.js","build/runtest/testrunner.js");
|
|
|
|
|
|
|
|
// Load the tests
|
|
|
|
load(
|
2007-09-12 17:45:05 +02:00
|
|
|
"test/unit/core.js",
|
|
|
|
"test/unit/selector.js",
|
|
|
|
"test/unit/event.js"
|
|
|
|
//"test/unit/fx.js",
|
|
|
|
//"test/unit/ajax.js"
|
2007-07-09 18:14:19 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// Display the results
|
|
|
|
results();
|
2007-08-20 01:37:26 +02:00
|
|
|
};
|