-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.html
35 lines (27 loc) · 1.04 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Sassij Tests</title>
<script language="javascript" src="lib/jquery-1.3.1.min.js" type="text/javascript"></script>
<script language="javascript" src="lib/testrunner.js" type="text/javascript"></script>
<!-- add a script reference to your library here -->
<link media="screen" href="lib/testsuite.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<script language="javascript" type="text/javascript">
qUnitTesting(function(config){
config.beforeEach = function(){
}
config.afterEach = function(){
}
//TODO: Modules and tests go here
});
</script>
<h1>My Foo Tests</h1>
<h2 id="banner"></h2>
<ol id="tests"></ol>
<div id="results"></div>
<div id="main"></div>
<!-- Any HTML you may require for your tests to work properly -->
</body>
</html>