-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.62 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.62 KB
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
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
FaceUnit | A unit test tool for javascript
</title>
<meta name="description" content="A unit test tool made for javascript">
<meta name="keywords" content="unit test,test,JavaScript,faceUnit,face team">
<meta name="author" content="Zhifei Fang">
<link rel="stylesheet" type="text/css" href="funit.css">
</head>
<body>
<div id="testCase">
<div class="functionBar">
<button id="testCaseAdd" class="btn btn-small">Add</button>
</div>
<table>
<thead>
<tr>
<td></td>
<td>Test case</td>
<td>Assertion</td>
<td>Result</td>
<td></td>
</tr>
</thead>
<tbody id="testCaseField">
</tbody>
</table>
</div>
<div id="editorContainer">
<div class="functionBar">
<button id="scriptRun" class="btn btn-small">Run</button>
<a class="btn btn-small" href="https://github.com/facetothefate/faceUnit">GitHub</a>
<img style="float:right;width:100px;" src="http://thefaceteam.org/face%20logo.png">
</div>
<div id="editor">
</div>
</div>
<div id="console">
</div>
</body>
<script type="text/javascript" src="lib/ace/src-min-noconflict/ace.js"></script>
<script type="text/javascript" src="funit.js"></script>
</html>