aboutsummaryrefslogtreecommitdiff
path: root/js/test/test.html
blob: 6448e10871ccb8a1d4f2c6d9e72ad2792d881893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang='en-US'>
  <head>
    <meta charset='utf-8'/>
    <title>Luigi Template Mocha Tests</title>
    <link href='https://unpkg.com/mocha@5.2.0/mocha.css' rel='stylesheet' />
  </head>

  <body>
    <div id='mocha'></div>

    <script src='../luigi-template.js'></script>
    <script src='https://unpkg.com/chai/chai.js'></script>
    <script src='https://unpkg.com/mocha@5.2.0/mocha.js'></script>

    <script>mocha.setup('bdd')</script>
    <script src='template.js'></script>
    <script src='filters.js'></script>
    <script src='cache.js'></script>
    <script src='errors.js'></script>
    <script src='default-filters.js'></script>
    <script>
      mocha.checkLeaks();
      mocha.run();
    </script>
  </body>
</html>