-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
59 lines (51 loc) · 1.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html><html><head><title>cookies.js</title><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" media="all" href="test/vendor/mocha.css"><style>
#demo { display: none; }
#mocha .test.pass::before {
font-size: inherit;
}
#mocha-stats {
top: 70px;
}
@media (max-width:60em) {
#mocha-stats {
position: static;
}
body {
padding: 10px 20px;
}
}
</style></head>
<body>
<div class="test"></div>
<style>#demo { display: none; }
#mocha .test.pass::before {
font-size: inherit;
}
#mocha-stats {
top: 70px;
}
@media (max-width:60em) {
#mocha-stats {
position: static;
}
body {
padding: 10px 20px;
}
}
</style>
<div id="mocha"></div>
<script src="test/jquery.js"></script>
<script src="test/vendor/mocha.js"></script>
<script src="test/vendor/chai.js"></script>
<script src="test/vendor/sinon.js"></script>
<script src="cookies.min.js"></script>
<script>
mocha.setup('bdd');
var base = document.getElementById("base");
</script>
<script src="test/test.js"></script>
<script>
if (window.mochaPhantomJS) { mochaPhantomJS.run(); }
else { mocha.run(); }
</script>
</body></html>