Mercurial > bugzilla-dashboard
comparison tests.html @ 36:eb2cc1f89869
Added a test suite, basic CommonJS module loader, and a new main.html file that will be a unified UI to all three pages (dashboard, user-finder, bug-filer).
author | Atul Varma <avarma@mozilla.com> |
---|---|
date | Sat, 24 Apr 2010 12:04:24 -0700 |
parents | |
children | 51c1829956d9 |
comparison
equal
deleted
inserted
replaced
35:1930087bd219 | 36:eb2cc1f89869 |
---|---|
1 <html> | |
2 <head> | |
3 <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
4 <link rel="stylesheet" type="text/css" media="all" | |
5 href="css/qunit.css" /> | |
6 <title>Bugzilla Dashboard Test Suite</title> | |
7 </head> | |
8 <body> | |
9 <h1 id="qunit-header">Bugzilla Dashboard Test Suite</h1> | |
10 <h2 id="qunit-banner"></h2> | |
11 <h2 id="qunit-userAgent"></h2> | |
12 <ol id="qunit-tests"></ol> | |
13 <p> | |
14 <a target="qunitDocs" | |
15 href="http://docs.jquery.com/QUnit">QUnit Documentation</a> | | |
16 <a target="bugzillaDashboard" | |
17 href="main.html">Bugzilla Dashboard</a> | |
18 </p> | |
19 </body> | |
20 <!-- Base Scripts--> | |
21 <script src="js/jquery.js"></script> | |
22 <script src="js/qunit.js"></script> | |
23 <script src="js/require.js"></script> | |
24 <script src="js/tests.js"></script> | |
25 | |
26 <!-- CommonJS Modules --> | |
27 <script src="js/modules/date-utils.js"></script> | |
28 | |
29 <!-- Test Suites --> | |
30 <script src="js/tests/test-date-utils.js"></script> | |
31 <script src="js/tests/test-require.js"></script> | |
32 </html> |