-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 1.48 KB
/
index.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="jspec/jspec.css" type="text/css" />
<script type="text/javascript" src="spec_helper.js" charset="utf-8"></script>
<script type="text/javascript" src="jspec/jspec.js" charset="utf-8"></script>
<script type="text/javascript" src="../lib/core_extensions.js" charset="utf-8"></script>
<script type="text/javascript" src="../lib/benchmark.js" charset="utf-8"></script>
<script type="text/javascript" src="../lib/exception.js" charset="utf-8"></script>
<title>Benchmark Test Suite</title>
<script type="text/javascript" charset="utf-8">
function runSuites() {
JSpec
.exec('lib/benchmark_spec.js')
.exec('lib/core_extensions_spec.js')
.exec('lib/exception_spec.js')
.run()
.report();
// Reload every 3 seconds (Ghetto AutoTest)
setTimeout(function() {
history.go(0);
}, 3000);
}
</script>
</head>
<body class="jspec" onload="runSuites()">
<div id="jspec-top"><h2 id="jspec-title">JSpec <em><script>document.write(JSpec.version)</script></em></h2></div>
<div id="jspec"></div>
<div id="jspec-bottom"></div>
</body>
</html>