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

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

initial commit

  • Property mode set to 100644
File size: 1.9 KB
Line 
1<!DOCTYPE html>
2<!--
3This file is almost the same as context.html - loads all source files,
4but its purpose is to be loaded in the main frame (not within an iframe),
5just 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>
Note: See TracBrowser for help on using the repository browser.