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 (28 lines) | stat: -rw-r--r-- 914 bytes parent folder | download | duplicates (5)
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
<html>
  <head>
    <title>Nodeunit Test Suite</title>
    <!--
      Note this file is only used for 'make browser', when it is copied to
      dist/browser/test.html for running the browser test suite
    -->
    <link rel="stylesheet" href="nodeunit.css" type="text/css" media="screen" />
    <script src="nodeunit.js"></script>
    <script src="test-base.js"></script>
    <script src="test-runmodule.js"></script>
    <script src="test-runtest.js"></script>
    <script src="test-testcase.js"></script>
    <script src="test-testcase-legacy.js"></script>
  </head>
  <body>
    <h1 id="nodeunit-header">Nodeunit Test Suite</h1>
    <script>
      nodeunit.run({
        'test-base': test_base,
        'test-runmodule': test_runmodule,
        'test-runtest': test_runtest,
        'test-testcase': test_testcase,
        'test-testcase-legacy': test_testcase_legacy
      });
    </script>
  </body>
</html>