aboutsummaryrefslogtreecommitdiffstats
path: root/build/runtest/test.js
blob: 1bc9ac12586c446e38b5f8247fae10edaa884f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Init
load("build/runtest/env.js");
window.location = "test/index.html";

// Load the test runner
load("dist/jquery.js","build/runtest/testrunner.js");

// Load the tests
load(
	"src/jquery/coreTest.js",
	"src/selector/selectorTest.js",
	"src/event/eventTest.js",
	"src/fx/fxTest.js"
	//"src/ajax/ajaxTest.js"
);

// Display the results
results();