forked from toolness/bugzilla-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.html
37 lines (35 loc) · 1.13 KB
/
tests.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
27
28
29
30
31
32
33
34
35
36
37
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" media="all"
href="css/qunit.css" />
<title>Bugzilla Dashboard Unit Test Suite</title>
</head>
<body>
<h1 id="qunit-header">Bugzilla Dashboard Unit Test Suite</h1>
<h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<p>
<a target="qunitDocs"
href="http://docs.jquery.com/QUnit">QUnit Documentation</a> |
<a target="bugzillaDashboard"
href="index.html">Bugzilla Dashboard</a> |
<a target="blackBox"
href="black-box.html">Black Box (System Tests)</a>
</p>
</body>
<!-- Base Scripts-->
<script src="js/jquery.js"></script>
<script src="js/qunit.js"></script>
<script src="js/require.js"></script>
<script src="js/bugzilla.js"></script>
<script src="js/tests.js"></script>
<!-- CommonJS Modules -->
<script src="js/modules/date-utils.js"></script>
<script src="js/modules/mocks.js"></script>
<!-- Test Suites -->
<script src="js/tests/test-date-utils.js"></script>
<script src="js/tests/test-require.js"></script>
<script src="js/tests/test-bugzilla.js"></script>
</html>