We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0de3d2 commit 5720fc5Copy full SHA for 5720fc5
test/test.html
@@ -6,7 +6,6 @@
6
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
7
<script src="../node_modules/mocha/mocha.js"></script>
8
<script src="../node_modules/expect.js/expect.js"></script>
9
- <script src="../node_modules/debug/debug.js"></script>
10
11
<!--AV Test init-->
12
@@ -19,7 +18,9 @@
19
18
function assert(expr, msg) {
20
if (!expr) throw new Error(msg || 'failed');
21
}
22
- var debug = console.log;
+ function debug() {
+ console.log(arguments);
23
+ }
24
</script>
25
<script src="file.js"></script>
26
<script src="error.js"></script>
0 commit comments