-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
34 lines (25 loc) · 1013 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>TNC Admin client</title>
<!-- Jasmine imports -->
<script src="/node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
<script src="/node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
<script src="/node_modules/jasmine-core/lib/jasmine-core/boot.js"></script>
<link rel="stylesheet" href="/node_modules/jasmine-core/jasmine.css">
<script src="/node_modules/systemjs/dist/system.src.js"></script>
<script src="/node_modules/zone.js/dist/zone.js"></script>
<script src="/node_modules/immutable/dist/immutable.js"></script>
<script src="/paths.js"></script>
<script>
System.config({
baseUrl: '.',
defaultJSExtensions: true,
paths: APP_PATHS
});
System.import('/dist/test/bootstrap.js')
.then(window.onload) // Trigger jasmine test runner
.catch(console.error.bind(console));
</script>
</head>
</html>