Mercurial > bugzilla-dashboard
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests.html Sat Apr 24 12:04:24 2010 -0700 @@ -0,0 +1,32 @@ +<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 Test Suite</title> +</head> +<body> +<h1 id="qunit-header">Bugzilla Dashboard 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="main.html">Bugzilla Dashboard</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/tests.js"></script> + +<!-- CommonJS Modules --> +<script src="js/modules/date-utils.js"></script> + +<!-- Test Suites --> +<script src="js/tests/test-date-utils.js"></script> +<script src="js/tests/test-require.js"></script> +</html>