-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 2.02 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
<!doctype html>
<html>
<head>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/wct-mocha/wct-mocha.js"></script>
<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js"></script>
</head>
<body>
<script type="module" src="./lit-html_test.js"></script>
<script type="module" src="./lib/template-result_test.js"></script>
<script type="module" src="./lib/template_test.js"></script>
<script type="module" src="./lib/template-factory_test.js"></script>
<script type="module" src="./lib/render_test.js"></script>
<script type="module" src="./lib/parts_test.js"></script>
<script type="module" src="./lib/modify-template_test.js"></script>
<script type="module" src="./directives/async-append_test.js"></script>
<script type="module" src="./directives/async-replace_test.js"></script>
<script type="module" src="./directives/cache_test.js"></script>
<script type="module" src="./directives/guard_test.js"></script>
<script type="module" src="./directives/if-defined_test.js"></script>
<script type="module" src="./directives/repeat_test.js"></script>
<script type="module" src="./directives/until_test.js"></script>
<script type="module" src="./directives/unsafe-html_test.js"></script>
<script type="module" src="./directives/class-map_test.js"></script>
<script type="module" src="./directives/style-map_test.js"></script>
<script>
WCT.loadSuites([
'shady.html',
'shady.html?shadydom=true',
'shady.html?shadydom=true&shimcssproperties=true',
'shady-apply.html',
'shady-apply.html?shadydom=true',
'shady-apply.html?shadydom=true&shimcssproperties=true',
'shady-scoping-shim.html',
'shady-scoping-shim.html?shadydom=true',
'shady-scoping-shim.html?shadydom=true&shimcssproperties=true',
'no-template.html',
'shady_no-wc.html',
]);
</script>
</body>
</html>