-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (54 loc) · 2.12 KB
/
index.html
File metadata and controls
65 lines (54 loc) · 2.12 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Benchmark</title>
<meta name=viewport content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Benchmark and dependencies -->
<script src="node_modules/lodash/lodash.js"></script>
<script src="node_modules/platform/platform.js"></script>
<script src="node_modules/benchmark/benchmark.js"></script>
<!-- DateTime v2 -->
<script src="node_modules/datetime2-tzdata/tzdata/2017a/js/Europe/Moscow.js"></script>
<script src="node_modules/datetime2/datetime.min.js"></script>
<script src="node_modules/datetime2-locale-ru/ru.js"></script>
<!-- MomentJS -->
<script src="node_modules/moment/min/moment.min.js"></script>
<script src="node_modules/moment-timezone/builds/moment-timezone-with-data-2012-2022.min.js"></script>
<!-- js-joda -->
<script src="node_modules/js-joda/dist/js-joda.min.js"></script>
<script src="node_modules/js-joda-timezone/dist/js-joda-timezone.min.js"></script>
<script>
JSJoda.use(JSJodaTimezone);
</script>
<!-- Reporter -->
<script src="lib/reporter/browser/index.js"></script>
<link rel="stylesheet" href="lib/reporter/browser/index.css">
<script>
/**
* ------------------------------------------------------------------------------------------------
* Setup libraries
* ------------------------------------------------------------------------------------------------
*/
DateTime.setTzdata(tzdata);
DateTime.setDefaultTimezone('Europe/Moscow');
</script>
<!-- Suites -->
<script src="suite/parse-array.js"></script>
<script src="suite/parse-string.js"></script>
<script src="suite/parse-string-format.js"></script>
<!-- Reports -->
<script src="report/1.0.1.js"></script>
<!-- Runner -->
<script src="lib/runner/browser/index.js"></script>
</head>
<body>
<div id="benchmark"></div>
<script>
(new Runner(document.querySelector('#benchmark'), {
report: report['1.0.1'],
suites: suites
}));
</script>
</body>
</html>