File: test.html

package info (click to toggle)
node-nodeunit 0.11.3%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,048 kB
  • sloc: javascript: 3,324; makefile: 141
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>