From d7a9732f6b2e3d95a80b0697e6c01db7f43a5e93 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 17 Jun 2024 13:23:19 +0100 Subject: [PATCH] chore: output stdout from execSync --- test/gitlog.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gitlog.test.ts b/test/gitlog.test.ts index 677cc56..0725fe0 100644 --- a/test/gitlog.test.ts +++ b/test/gitlog.test.ts @@ -6,7 +6,7 @@ const testRepoLocation = `${__dirname}/test-repo-clone`; function execInTmpDir(command: string) { try { - execSync(command, { cwd: __dirname, stdio: "ignore" }); + execSync(command, { cwd: __dirname, stdio: "inherit" }); } catch (e) { console.error("Error with execSync", e); }