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 2d4bced commit c750ab4Copy full SHA for c750ab4
lib/cli.js
@@ -53,6 +53,7 @@ module.exports = async (argvs) => {
53
spinner.fail(msg + err.versions.reverse().join(" | "));
54
throw err.code;
55
}
56
+ console.error(err);
57
spinner.fail("Unexpected error");
58
throw new Error(err);
59
} finally {
tests/test.js
@@ -1,3 +1,7 @@
1
+/**
2
+ * @jest-environment node
3
+ */
4
+
5
const fs = require("fs-extra");
6
const cli = require("../lib/cli");
7
const os = require("os");
0 commit comments