-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
40 lines (35 loc) · 1.32 KB
/
Copy pathtest.html
File metadata and controls
40 lines (35 loc) · 1.32 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Jasmine Test Runner</title>
<link rel="stylesheet" href="node_modules/jasmine-core/lib/jasmine-core/jasmine.css">
<script src="node_modules/systemjs/dist/system.src.js"></script>
</head>
<body>
<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>
<script>
var __spec_files__ = [
'app/app.component.spec'
];
// System.config({
// packages: {
// defaultExtension: 'js'
// }
// });
// System.import('/app/app.component.spec')
// .then(window.onload)
// .catch();
</script>
<script src="browser-test-shim.js"></script>
<!--<script src="app/app.component.spec.js">-->
<!--// describe('First test', function () {-->
<!--// it('Should add two numbers', function () {-->
<!--// expect(2+2).toEqual(4);-->
<!--// });-->
<!--// });-->
<!--</script>-->
</body>
</html>