Moved the tests into jQuery proper.

This commit is contained in:
John Resig 2006-08-13 15:24:52 +00:00
parent 139a9cd7d4
commit e7a29e4239
17 changed files with 3931 additions and 0 deletions

21
test/index.html Normal file
View file

@ -0,0 +1,21 @@
<html>
<head>
<script type="text/javascript" src="lib/Test/Harness.js"></script>
<script type="text/javascript" src="lib/Test/Harness/Browser.js"></script>
</head>
<body>
<h1>jQuery - Test Suite</h1>
<script type="text/javascript">
new Test.Harness.Browser().runTests(
"tests/prereq.html",
"tests/css1.html",
"tests/css2.html",
"tests/css3.html",
"tests/xpath.html",
"tests/custom.html",
"tests/basic.html"
);
</script>
</body>
</html>