File: tests.html

package info (click to toggle)
node-css-vendor 2.0.8%2B~2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 676 kB
  • sloc: javascript: 802; makefile: 6
file content (21 lines) | stat: -rw-r--r-- 522 bytes parent folder | download
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">
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>JSS Tests</title>
  <link href="./node_modules/mocha/mocha.css" rel="stylesheet" />
</head>
<body>
  <div id="mocha"></div>
  <script src="./node_modules/es5-shim/es5-shim.js"></script>
  <script src="./node_modules/mocha/mocha.js"></script>

  <script>mocha.setup('bdd')</script>
  <script src="tmp/tests.js"></script>
  <script>
    mocha.checkLeaks();
    mocha.run();
  </script>
</body>
</html>