-
Notifications
You must be signed in to change notification settings - Fork 5
/
index-test.html
42 lines (30 loc) · 1.03 KB
/
index-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
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>HTML Component (Test)</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
<!-- Mocha -->
<script src="lib/expect.js"></script>
<script src="lib/mocha.js"></script>
<link href="lib/mocha.css" rel="stylesheet" />
<script src="lib/dom4.js"></script>
<script src="lib/hogan-3.0.2.min.js"></script>
<!-- Components -->
<link href="src/html-component.html" rel="import" />
<link href="src/app.html" rel="import" />
<link href="src/todo-list.html" rel="import" />
<link href="src/todo-item.html" rel="import" />
<link href="src/todo-summary.html" rel="import" />
</head>
<body>
<div id="mocha"></div>
<div id="test" hidden></div>
<script>mocha.setup('bdd')</script>
<script src="test/todo-list-test.js"></script>
<script>
mocha.checkLeaks()
mocha.run()
</script>
</body>
</html>