[test][s]: (refs #2) add qunit testing skeleton.

This commit is contained in:
rgrp
2011-10-24 22:24:00 +01:00
parent 9e8198e491
commit 85743d9eb6
3 changed files with 1694 additions and 0 deletions

21
test/index.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Qunit Tests</title>
<script src="../src/deps-min.js"></script>
<link rel="stylesheet" href="qunit/qunit.css" type="text/css" media="screen" />
<script type="text/javascript" src="qunit/qunit.js"></script>
</head>
<body>
<h1 id="qunit-header">Qunit Tests</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture">
<div id="our-dialog">
</div>
</div>
</body>
</html>