UNPKG

532 BHTMLView Raw
1<html>
2 <head>
3 <title>Test</title>
4 <meta charset="utf-8">
5 <link rel="stylesheet" href="../../node_modules/mocha/mocha.css" />
6 <script src="../../node_modules/mocha/mocha.js"></script>
7 <script src="../../node_modules/chai/chai.js"></script>
8 </head>
9 <body>
10 <div id="mocha"></div>
11 <script>
12 expect = chai.expect;
13
14 describe('Tests', function() {
15 it('tests', function() {
16 expect(true).to.equal(true);
17 });
18 });
19
20 mocha.run();
21 </script>
22 </body>
23</html>