File: test.html

package info (click to toggle)
node-nodeunit 0.11.2%2Bds3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,044 kB
  • sloc: makefile: 154; sh: 2
file content (18 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
  <head>
    <title>Example tests</title>
    <script src="nodeunit.js"></script>
    <script src="suite1.js"></script>
    <script src="suite2.js"></script>
    <script src="suite3.js"></script>
  </head>
  <body>
    <script>
      nodeunit.run({
        'suite1': suite1,
        'suite2': suite2,
        'suite3': suite3
      });
    </script>
  </body>
</html>