We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b02972 commit c4aa958Copy full SHA for c4aa958
.gitignore
@@ -5,6 +5,7 @@
5
/build/
6
/test/coverage/
7
/test/repos/
8
+/test/test/repos/
9
/src/
10
/include/
11
/lib/enums.js
test/index.js
@@ -1,8 +1,13 @@
1
-var args = "cover _mocha -- runner tests --report=lcov".split(" ");
+var args = [
2
+ "cover",
3
+ process.platform != "win32" ? "_mocha" : "../node_modules/mocha/bin/_mocha",
4
+ "--",
+ "runner",
+ "tests",
+ "--report=lcov",
+ "--expose-gc"
+ ];
require("child_process").fork("../node_modules/istanbul/lib/cli.js", args, {
- cwd: __dirname,
- execArgv: [
- process.platform !== "win32" ? "--expose-gc" : ""
- ]
12
+ cwd: __dirname
13
});
0 commit comments