Skip to content

Commit

Permalink
chore: quiten stdio logs
Browse files Browse the repository at this point in the history
  • Loading branch information
domharrington committed Jun 17, 2024
1 parent a8c860c commit 63a1d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gitlog.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const testRepoLocation = `${__dirname}/test-repo-clone`;

function execInTmpDir(command: string) {
try {
execSync(command, { cwd: __dirname, stdio: "inherit" });
execSync(command, { cwd: __dirname, stdio: "ignore" });
} catch (e) {
console.error("Error with execSync", e);
}
Expand Down

0 comments on commit 63a1d5c

Please sign in to comment.