forked from Leaflet/Leaflet.draw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Spec Runner</title>
<link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css">
</head>
<body>
<div id="mocha"></div>
<script src="expect.js"></script>
<script type="text/javascript" src="../node_modules/mocha/mocha.js"></script>
<script type="text/javascript" src="happen.js"></script>
<script type="text/javascript" src="sinon.js"></script>
<!-- source files -->
<script type="text/javascript" src="before.js"></script>
<script type="text/javascript" src="../node_modules/Leaflet/build/deps.js"></script>
<script type="text/javascript" src="../node_modules/Leaflet/debug/leaflet-include.js"></script>
<script type="text/javascript" src="../build/deps.js"></script>
<script type="text/javascript" src="../build/leaflet.draw-include.js"></script>
<script>
mocha.setip({
ui: 'bdd',
ignoreLeaks: true
});
</script>
<!-- spec files -->
<script type="text/javascript" src="suites/DrawControlSpec.js"></script>
<script>
(window.mochaPhantomJS || window.mocha).run();
</script>
</body>
</html>