File: index.html

package info (click to toggle)
node-setimmediate 1.0.5-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: javascript: 267; makefile: 23
file content (21 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>Real-Browser Only setImmediate Tests</title>
        <link rel="stylesheet" href="mocha.css" />
    </head>
    <body>
        <div id="mocha"></div>
        <script src="mocha.js"></script>
        <script src="chai.js"></script>
        <script>mocha.setup({ ui: "bdd", slow: Infinity });</script>
        <script src="setImmediate.js"></script>
        <script src="tests.js"></script>
        <script>
              window.onload = function() {
                 mocha.run()
             };
        </script>
    </body>
</html>