main
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <title>Cakery Tests</title>
7 <meta name="description" content="">
8 <meta name="viewport" content="width=device-width, initial-scale=1">
9
10 {{content-for 'head'}}
11 {{content-for 'test-head'}}
12
13 <link rel="stylesheet" href="assets/vendor.css">
14 <link rel="stylesheet" href="assets/cakery.css">
15 <link rel="stylesheet" href="assets/test-support.css">
16 <style>
17 #ember-testing-container {
18 position: absolute;
19 background: white;
20 bottom: 0;
21 right: 0;
22 width: 640px;
23 height: 384px;
24 overflow: auto;
25 z-index: 9999;
26 border: 1px solid #ccc;
27 }
28 #ember-testing {
29 zoom: 50%;
30 }
31 </style>
32 </head>
33 <body>
34 <div id="qunit"></div>
35 <div id="qunit-fixture"></div>
36
37 {{content-for 'body'}}
38 {{content-for 'test-body'}}
39 <script src="assets/vendor.js"></script>
40 <script src="assets/test-support.js"></script>
41 <script src="assets/cakery.js"></script>
42 <script src="testem.js"></script>
43 <script src="assets/test-loader.js"></script>
44 </body>
45</html>