-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtestSuite.html
26 lines (23 loc) · 914 Bytes
/
testSuite.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<title>Test Suite</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/qunit/git/qunit.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://code.jquery.com/qunit/git/qunit.js"></script>
<!-- Your source files go here -->
<script type="text/javascript" src="functions.js"></script>
<!-- Your tests files go here -->
<script type="text/javascript" src="isEvenTest.js"></script>
<script type="text/javascript" src="startsWithTest.js"></script>
</head>
<body>
<h1 id="qunit-header">QUnit example</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<!-- Any HTML you may require for your tests to work properly -->
<div id="qunit-fixture">test markup, will be hidden</div>
</body>
</html>