File: stack-trace.html

package info (click to toggle)
node-mocha 4.1.0%2Bds3-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,956 kB
  • sloc: makefile: 163; sh: 17
file content (24 lines) | stat: -rw-r--r-- 625 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
22
23
24
<html>
<head>
    <title>Mocha</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="../../mocha.css" />
    <script src="../../mocha.js"></script>
    <script>mocha.setup('bdd')</script>
    <script>
        function assert(expr, err) {
            if (!expr) throw err;
        }
    </script>
    <script src="stack-trace.spec.js"></script>
    <script>
        onload = function() {
            mocha.run();
        };
    </script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>