2016-09-13 14:39:39 -07:00
|
|
|
<!-- Run the test app-->
|
2016-03-17 14:07:54 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2016-03-24 19:30:26 +00:00
|
|
|
<head>
|
|
|
|
<base href="/">
|
2016-09-13 14:39:39 -07:00
|
|
|
<title>App Under Test</title>
|
2016-04-27 11:28:22 -07:00
|
|
|
<meta charset="UTF-8">
|
2016-03-24 19:30:26 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
2016-04-27 11:28:22 -07:00
|
|
|
|
2016-11-05 12:53:47 -07:00
|
|
|
<!-- Polyfills for older browsers -->
|
2016-05-19 16:37:54 -07:00
|
|
|
<script src="node_modules/core-js/client/shim.min.js"></script>
|
2016-03-17 14:07:54 +00:00
|
|
|
|
2016-04-27 11:28:22 -07:00
|
|
|
<script src="node_modules/zone.js/dist/zone.js"></script>
|
|
|
|
<script src="node_modules/reflect-metadata/Reflect.js"></script>
|
2016-03-24 19:30:26 +00:00
|
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
2016-04-27 11:28:22 -07:00
|
|
|
|
|
|
|
<script src="systemjs.config.js"></script>
|
2016-09-13 14:39:39 -07:00
|
|
|
<script src="systemjs.config.extras.js"></script>
|
2016-03-24 19:30:26 +00:00
|
|
|
<script>
|
2016-05-11 18:31:34 -07:00
|
|
|
System.import('app').catch(function(err){ console.error(err); });
|
2016-03-24 19:30:26 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
2016-03-17 14:07:54 +00:00
|
|
|
|
2016-03-24 19:30:26 +00:00
|
|
|
<body>
|
|
|
|
<my-app>Loading...</my-app>
|
|
|
|
</body>
|
2016-03-17 14:07:54 +00:00
|
|
|
</html>
|