]> git.proxmox.com Git - mirror_xterm.js.git/blob - test-harness.html
Merge pull request #535 from Tyriar/534_phantomjs
[mirror_xterm.js.git] / test-harness.html
1 <html>
2 <head>
3 <meta charset="utf-8">
4 <!-- encoding must be set for mocha's special characters to render properly -->
5 <link rel="stylesheet" href="node_modules/mocha/mocha.css" />
6 </head>
7 <body>
8 <div id="mocha"></div>
9 <div id="xterm"></div>
10 <script src="node_modules/mocha/mocha.js"></script>
11 <script src="node_modules/chai/chai.js"></script>
12 <script>
13 mocha.ui('bdd')
14 assert = chai.assert
15 </script>
16 <script src="build/xterm.js"></script>
17 <script src="lib/utils/CharMeasure.phantom.js"></script>
18 <script>
19 mocha.run()
20 </script>
21 </body>
22 </html>