File: index.html

package info (click to toggle)
node-expect.js 0.3.1%2Bdfsg%2B~0.3.29-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 224 kB
  • sloc: javascript: 1,234; makefile: 17
file content (16 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<html>
  <head>
    <title>expect.js tests</title>
    <link href="/support/mocha.css" rel="stylesheet" media="screen" />
    <script src="/support/jquery.js"></script>
    <script src="/support/mocha.js"></script>
    <script>mocha.setup({ ui: 'bdd', globals: ['script*']});</script>
    <script src="/expect.js"></script>
    <script src="/test/expect.js"></script>
    <script>window.onload = mocha.run;</script>
  </head>
  <body>
    <div id="mocha"></div>
  </body>
</html>