-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (45 loc) · 2.02 KB
/
index.html
File metadata and controls
53 lines (45 loc) · 2.02 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.4.1/jasmine.min.css">
<!--script src="node_modules/es6-promise/dist/es6-promise.js"></script>
<script src="node_modules/es6-shim/es6-shim.js"></script-->
<!-- script src="node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.4.1/jasmine.js"></script>
<!-- script src="node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.4.1/jasmine-html.js"></script>
<!-- script src="node_modules/jasmine-core/lib/jasmine-core/boot.js"></script -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.4.1/boot.js"></script>
<!-- script src="https://code.angularjs.org/2.0.0-beta.17/angular2-polyfills.js"></script -->
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/zone.js/dist/async-test.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="https://code.angularjs.org/tools/system.js"></script>
<script src="https://code.angularjs.org/tools/typescript.js"></script>
<script src="config.js"></script>
<!-- script src="node_modules/angular2/bundles/testing.dev.js"></script -->
<script>
System.import('app/http.spec').then((mod) => {
})
.then(window.onload);
/*System.import('app/app.test')
.then((src) => {
console.log('main');
src.main();
return '';
}).then(window.onload);*/
</script>
<!--script>
// Demo only!
describe('Hero', function() {
it('has name given in the constructor', function() {
var hero = new Hero(1, 'Super Cat');
expect(hero.name).toEqual('Super Cat');
});
it('has the id given in the constructor', function() {
var hero = new Hero(1, 'Super Cat');
expect(hero.id).toEqual(1);
});
});
</script-->
</head>
</html>