minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / js-base64 / test / index.html
1 <html>
2   <head>
3     <meta charset="utf-8">
4     <title>Mocha Tests</title>
5     <link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
6   </head>
7   <body>
8     <div id="mocha"></div>
9
10     <script src="https://cdn.rawgit.com/jquery/jquery/3.5.1/dist/jquery.min.js"></script>
11     <script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>
12     <script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
13     <script>
14       mocha.setup('bdd');
15     </script>
16     <script src="../base64.js"></script>
17     <script>
18       var assert = function(expr, msg) {
19         if (!expr) throw new Error(msg || 'failed');
20       };
21       assert.equal = function(a, b, msg) {
22         if (a !== b) throw new Error(msg || ('failed : '+a+','+b));
23       };
24     </script>
25     <script src="./dankogai.js"></script>
26     <script src="./es5.js"></script>
27     <script src="./large.js"></script>
28     <script src="./yoshinoya.js"></script>
29     <script src="./atob.js"></script>
30     <script>
31       $(function() {
32         mocha.run();
33       });
34     </script>
35 </head>
36 <body>
37   $Id: index.html,v 0.3 2017/09/11 08:43:43 dankogai Exp dankogai $
38   <div id="mocha"></div>
39 </body>
40 </html>