-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtests.html
75 lines (68 loc) · 1.96 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="help.css" rel="stylesheet"></head>
</head>
<style>
.status {
white-space: nowrap;
}
.mulcol1 {
column-fill: auto;
height: 90vh;
column-count: 2;
}
.mulcol2 {
column-fill: balance-all;
column-width: 16rem;
height: 90vh;
}
.colhead {
break-before:column;
font-weight: 1000;
display: block;
}
</style>
<body>
<button id="startseq">start tests sequentially</button>
<button id="startslow">start slow tests</button>
<button id="start">start all tests</button>
<button id="retry">retry failed</button>
<button id="rempass">remove passed</button>
<button id="close">close test tabs</button>
<input type=checkbox id=autoclose checked><label for="autoclose">close tabs on pass</label>
<p>
<!-- <button id="generate">generate test stubs</button> -->
<div class="mulcol2">
<span class="colhead">tested:</span>
<span id="tests"></span>
<span class="colhead">untested:</span>
<span id="untested"></span>
<span class="colhead">untested custom:</span>
<span id="untestedcustom"></span>
</div>
<!-- <table width=100%>
<tr>
<td>
<b>tested:</b>
<div class="mulcol2" id="tests">
</div>
</td>
<td>
<b>untested built-in:</b>
<div class="mulcol1" id="untested">
</div>
</td>
<td>
<b>untested custom:</b>
<div class="mulcol2" id="untestedcustom">
</div>
</td>
</tr>
</table> -->
</body>
<script src="lib/jquery-3.6.0.min.js"></script>
<script src="core.js"></script>
<script src="tests.js"></script>
</html>