UNPKG

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