LEFT | RIGHT |
1 <html> | 1 <html> |
2 | 2 |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <link rel="stylesheet" href="assets/mocha.css"> | 5 <link rel="stylesheet" href="assets/mocha.css"> |
6 | 6 |
7 | 7 |
8 <!-- Load test runner/environment --> | 8 <!-- Load test runner/environment --> |
9 <script src="assets/chai.js"></script> | 9 <script src="assets/chai.js"></script> |
10 <script src="assets/mocha.js"></script> | 10 <script src="assets/mocha.js"></script> |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 } else { | 100 } else { |
101 // The global variable testRunner is required by browser tests. | 101 // The global variable testRunner is required by browser tests. |
102 testRunner = mocha.run(); | 102 testRunner = mocha.run(); |
103 } | 103 } |
104 }); | 104 }); |
105 </script> | 105 </script> |
106 | 106 |
107 </head> | 107 </head> |
108 | 108 |
109 <body> | 109 <body> |
110 <div id="shortcut-help" style="display: none"></div> | 110 <div id="shortcut-help" style="display: none"></div> |
111 <div id="main" class="container"></div> | 111 <div id="main" class="container"></div> |
112 <div id="mocha"></div> | 112 <div id="mocha"></div> |
113 </body> | 113 </body> |
114 </html> | 114 </html> |
LEFT | RIGHT |