blob: 4b3ec93b56136442ed0073b113a9077765d7ab4a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | <!DOCTYPE html>
<html>
  <head>
    <title>Mocha Tests</title>
    <link rel="stylesheet" href="/mocha.css" />
  </head>
  <body>
    <div id="mocha"></div>
    <script src="/mocha.js"></script>
    <script>
      mocha.setup("bdd");
    </script>
    <!-- load code you want to test here -->
    <script src="/dist/stories.test.js"></script>
    <script src="/dist/hooks/useTalerActionURL.test.js"></script>
    <!-- load your test files here -->
    <script>
      mocha.run();
    </script>
  </body>
</html>
 |