-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.html
33 lines (31 loc) · 1.12 KB
/
test.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
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
<link href="app.css" rel="stylesheet" />
<style>
.cell {
outline: 1px dotted red;
/*border: 1px dashed blue;*/
background: rgba(255, 255, 200, 0.5);
}
</style>
</head>
<body>
<div id="mocha"></div>
<script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/3.5.0/chai.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.min.js"></script>
<script>mocha.setup('tdd')</script>
<script src="lib/coffee-script.js"></script>
<script src="app.coffee" type="text/coffeescript"></script>
<script src="tests/content-editing.coffee" type="text/coffeescript"></script>
<script type="text/coffeescript">
mocha.checkLeaks()
mocha.run()
</script>
</body>
</html>