This repository has been archived by the owner on Jul 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
46 lines (40 loc) · 1.54 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
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>The Glow ✨</title>
<link rel="stylesheet" media="all" href="node_modules/mocha/mocha.css">
<!-- override a few mocha rules to make success/failures really stand out -->
<style>
#mocha li.passes, #mocha li.failures { font-size: 24px; }
#mocha li.passes em { color: green; }
#mocha li.failures em { color: red; }
</style>
<!-- Promise polyfill to run CLI tests -->
<script src="node_modules/es6-promise-polyfill/promise.min.js"></script>
<!-- A+ Promised Http Requests; comment out to use Zepto -->
<script src="node_modules/axios/dist/axios.js"></script>
<!-- Zepto can be used for Ajax (in absence of axios) and OPTIONAL $.extend -->
<!-- <script src="node_modules/zepto/dist/zepto.min.js"></script>
<script src="node_modules/zepto/src/deferred.js"></script>
<script src="node_modules/zepto/src/callbacks.js"></script> -->
<script src="node_modules/js-nacl/lib/nacl_factory.js"></script>
<script src="node_modules/source-map-support/browser-source-map-support.js"></script>
<script>
sourceMapSupport.install({handleUncaughtExceptions: false});
</script>
<!-- We use Mocha (https://mochajs.org/) to run our unit tests -->
<script src="node_modules/mocha/mocha.js"></script>
<script>
mocha.setup('bdd');
window.onload = function() { mocha.run(); }
</script>
<!-- this contains our compiled tests -->
<script src="build/tests.js"></script>
</head>
<body>
<div id="mocha">
<h1>The Glow ✨ : client crypto</h1>
</div>
</body>
</html>