* boilerplate, gulpfile, quickstart * move ts files up to cookbooks * move rest of ts files * fix tsconfig, default build task, json file * fix js examples * fix webpack example * remove a2docs.css references * fix aot examples * fix webpack run task * fix cb-i18n * fix upgrade examples * fix unit tests * fix comment in deployment index * removed unused typings.json * fix plunkers * fix js example paths * fix ts quickstart/setup prose * add src folder note to setup * broadly replace app/ -> src/app/ * broadly replace main.ts * broadly replaced index.html * broadly replace tsconfig * replace systemjs * fix filetrees * Minor prose fixes to aot, i18n cookbooks * remove char harp was complaining about * update new reactive forms example * fix quickstart jade error * fix mistakes uncovered by CI * fix bad filename errors * edit style guide 04-06 rule to use src * add changelog * Incorporate Jesus's feedback * fix snippet headers in toh1/2 * chore: tweak changelog and setup text
43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
<!-- Run the "bag" specs in a browser -->
|
|
<!-- #docregion -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<base href="/">
|
|
<title>Specs Bag</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link rel="stylesheet" href="node_modules/jasmine-core/lib/jasmine-core/jasmine.css">
|
|
|
|
</head>
|
|
<body>
|
|
<!-- Polyfills -->
|
|
<script src="node_modules/core-js/client/shim.min.js"></script>
|
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
|
|
|
<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 src="node_modules/zone.js/dist/zone.js"></script>
|
|
<script src="node_modules/zone.js/dist/long-stack-trace-zone.js"></script>
|
|
<script src="node_modules/zone.js/dist/proxy.js"></script>
|
|
<script src="node_modules/zone.js/dist/sync-test.js"></script>
|
|
<script src="node_modules/zone.js/dist/jasmine-patch.js"></script>
|
|
<script src="node_modules/zone.js/dist/async-test.js"></script>
|
|
<script src="node_modules/zone.js/dist/fake-async-test.js"></script>
|
|
|
|
<script>
|
|
var __spec_files__ = [
|
|
'app/bag/bag.spec',
|
|
'app/bag/bag.no-testbed.spec',
|
|
'app/bag/async-helper.spec'
|
|
];
|
|
</script>
|
|
<script src="browser-test-shim.js"></script>
|
|
</body>
|
|
|
|
</html>
|