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 bcde530 commit a433b7bCopy full SHA for a433b7b
1 file changed
test/logging.test.js
@@ -503,6 +503,11 @@ describe("logging", () => {
503
});
504
505
it("should logging on successfully build in multi-compiler mode", (done) => {
506
+ fs.readdir('D:\\System Volume Information', (err, files) => {
507
+ if (err) console.error('>>> Error:', err); // 可能返回 EINVAL 或 EACCES
508
+ else console.log(files);
509
+ });
510
+
511
let proc;
512
513
try {
0 commit comments