File: index.html

package info (click to toggle)
node-es6-promise 3.2.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 268 kB
  • ctags: 105
  • sloc: makefile: 6; sh: 2
file content (25 lines) | stat: -rw-r--r-- 534 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
<html>
<head>
  <meta charset="utf-8">
  <title>rsvp.js Tests</title>
  <link rel="stylesheet" href="mocha.css" />
</head>
<body>
  <div id="mocha"></div>
  <script src="json3.js"></script>
  <script src="mocha.js"></script>
  <script src="/testem.js"></script>
  <script>
    mocha.setup({
      ui: 'bdd',
      timeout: 200,
      ignoreLeaks: true
    });
  </script>
  <script src="browserify.js"></script>
  <script>
    if (window.mochaPhantomJS) { mochaPhantomJS.run(); }
    else { mocha.run(); }
  </script>
</body>
</html>