source: trip-planner-front/node_modules/@angular-devkit/build-angular/src/webpack/plugins/karma/karma-context.html@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.7 KB
Line 
1<!DOCTYPE html>
2<!--
3This is the execution context.
4Loaded within the iframe.
5Reloaded before every execution run.
6-->
7<html>
8 <head>
9 <title></title>
10 <base href="/" />
11 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
12 <link rel="stylesheet" href="_karma_webpack_/styles.css" crossorigin="anonymous" />
13 <meta
14 name="viewport"
15 content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
16 />
17 </head>
18
19 <body>
20 <!-- The scripts need to be in the body DOM element, as some test running frameworks need the body
21 to have already been created so they can insert their magic into it. For example, if loaded
22 before body, Angular Scenario test framework fails to find the body and crashes and burns in
23 an epic manner. -->
24 <script src="context.js"></script>
25 <script type="text/javascript">
26 // Configure our Karma and set up bindings
27 %CLIENT_CONFIG%
28 window.__karma__.setupContext(window);
29
30 // All served files with the latest timestamps
31 %MAPPINGS%
32 </script>
33 <script src="_karma_webpack_/runtime.js" crossorigin="anonymous"></script>
34 <script src="_karma_webpack_/polyfills-es5.js" crossorigin="anonymous" nomodule></script>
35 <script src="_karma_webpack_/polyfills.js" crossorigin="anonymous"></script>
36 <!-- Dynamically replaced with <script> tags -->
37 %SCRIPTS%
38 <script src="_karma_webpack_/scripts.js" crossorigin="anonymous"></script>
39 <script src="_karma_webpack_/vendor.js" crossorigin="anonymous"></script>
40 <script src="_karma_webpack_/main.js" crossorigin="anonymous"></script>
41 <script type="text/javascript">
42 window.__karma__.loaded();
43 </script>
44 </body>
45</html>
Note: See TracBrowser for help on using the repository browser.