forked from bitovi/funcunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
96 lines (83 loc) · 2.7 KB
/
dashboard.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<html>
<head>
<link rel="stylesheet" type="text/css" href="qunit/qunit.css" />
<title>FuncUnit DashBoard</title>
</head>
<body>
<div class="header">
<div class="header-wrapper">
<h1>FuncUnit Testing Suite</h1>
<a href="http://javascriptmvc.com/docs.html#!FuncUnit" target="_blank" class="help">Help</a>
</div>
</div>
<div class="coverage-wrapper">
<div class="tabs-container">
<a href="#" class="btn-tab btn-pressed" id="test-tab">Test Results</a>
<a href="#" class="btn-tab btn-hidden" id="report-tab">Coverage Report</a>
<a href="#" class="btn-tab btn-hidden" id="file-tab">Lines Covered</a>
<div class="run-options">
<li class="ui-state-default ui-corner-all play" title=".ui-icon-play"><span class="ui-icon ui-icon-play"></span></li>
<input type="checkbox" id="runCoverage">Coverage</input>
</div>
<div class="file-options">
<input type="checkbox" id="showHighlighting" checked="checked">Show Highlighting</input>
</div>
</div>
<div class="results-wrapper">
<table id='results' cellspacing="0" cellpadding="0">
<tr class="header">
<th class='chkcol'><input type="checkbox" checked="checked" class="check-all" /></th>
<th class='modulecol'>Module</th>
<th class='testcol'>Test</th>
</tr>
</table>
</div>
<div class="report-wrapper">
<div class="overall-stats">
<div class="total-stat">
<h2>Total Lines Covered <br /><span class="covered"></span></h2>
</div>
<div class="total-line-coverage stat-wrap">
<span class="stat"></span>
<span class="chart"></span>
<h2>Total Line Coverage</h2>
</div>
<div class="total-block-coverage stat-wrap">
<span class="stat"></span>
<span class="chart"></span>
<h2>Total Block Coverage</h2>
</div>
</div>
<table id='report' cellspacing="0" cellpadding="0">
<tr class="header">
<th class="filecol">File Name</th>
<th>Total Lines</th>
<th>Lines Coverage</th>
<th>Total Blocks</th>
<th class="blockcol">Block Coverage</th>
</tr>
</table>
</div>
<div class="files-wrapper highlighted">
<div class="overall-stats">
<div class="total-stat">
<h2>Lines Covered <br /><span class="covered"></span></h2>
</div>
<div class="total-line-coverage stat-wrap">
<span class="stat"></span>
<span class="chart"></span>
<h2>Line Coverage</h2>
</div>
<div class="total-block-coverage stat-wrap">
<span class="stat"></span>
<span class="chart"></span>
<h2>Block Coverage</h2>
</div>
</div>
<table id='file' cellspacing="0" cellpadding="0"></table>
</div>
</div>
<div class='tests'></div>
<script type='text/javascript' src='../steal/steal.js?funcunit/dashboard'></script>
</body>
</html>