git.asbjorn.biz
/
jquery.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added a missing semicolon.
[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
"test/unit/core.js",
13
"test/unit/selector.js",
14
"test/unit/event.js"
15
//"test/unit/fx.js",
16
//"test/unit/ajax.js"
17
);
18
19
// Display the results
20
results();
21
};