1 | <!DOCTYPE html>
|
---|
2 | <!--
|
---|
3 | This file is almost the same as context.html - loads all source files,
|
---|
4 | but its purpose is to be loaded in the main frame (not within an iframe),
|
---|
5 | just for immediate execution, without reporting to Karma server.
|
---|
6 | -->
|
---|
7 | <html>
|
---|
8 | <head>
|
---|
9 | %X_UA_COMPATIBLE%
|
---|
10 | <title>Karma DEBUG RUNNER</title>
|
---|
11 | <base href="/" />
|
---|
12 | <link href="favicon.ico" rel="icon" type="image/x-icon" />
|
---|
13 | <link rel="stylesheet" href="_karma_webpack_/styles.css" crossorigin="anonymous" />
|
---|
14 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
---|
15 | <meta
|
---|
16 | name="viewport"
|
---|
17 | content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
|
---|
18 | />
|
---|
19 | </head>
|
---|
20 |
|
---|
21 | <body>
|
---|
22 | <!-- The scripts need to be at the end of body, so that some test running frameworks
|
---|
23 | (Angular Scenario, for example) need the body to be loaded so that it can insert its magic
|
---|
24 | into it. If it is before body, then it fails to find the body and crashes and burns in an epic
|
---|
25 | manner. -->
|
---|
26 | <script src="context.js"></script>
|
---|
27 | <script src="debug.js"></script>
|
---|
28 | <script type="text/javascript">
|
---|
29 | // Configure our Karma
|
---|
30 | %CLIENT_CONFIG%
|
---|
31 |
|
---|
32 | // All served files with the latest timestamps
|
---|
33 | %MAPPINGS%
|
---|
34 | </script>
|
---|
35 | <script src="_karma_webpack_/runtime.js" crossorigin="anonymous"></script>
|
---|
36 | <script src="_karma_webpack_/polyfills-es5.js" crossorigin="anonymous" nomodule></script>
|
---|
37 | <script src="_karma_webpack_/polyfills.js" crossorigin="anonymous"></script>
|
---|
38 | <!-- Dynamically replaced with <script> tags -->
|
---|
39 | %SCRIPTS%
|
---|
40 | <script src="_karma_webpack_/scripts.js" crossorigin="anonymous"></script>
|
---|
41 | <script src="_karma_webpack_/vendor.js" crossorigin="anonymous"></script>
|
---|
42 | <script src="_karma_webpack_/main.js" crossorigin="anonymous"></script>
|
---|
43 | <script type="text/javascript">
|
---|
44 | window.__karma__.loaded();
|
---|
45 | </script>
|
---|
46 | </body>
|
---|
47 | </html>
|
---|