Skip to content

Commit

Permalink
add back in logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishkeshan committed Mar 27, 2024
1 parent 5b62ea6 commit c73d2b2
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,9 @@ function executeTest(command, input, timeout) {
const output = execSync(command, {
input,
timeout,
env
})
.toString()
.trim()
env,
stdio: 'inherit',
})?.toString()
return {
output,
}
Expand Down Expand Up @@ -92,9 +91,8 @@ function run() {
if (inputs.setupCommand) {
execSync(inputs.setupCommand, {
timeout: inputs.timeout,
stdio: 'ignore',
stdio: 'inherit',
env,

})
}

Expand Down

0 comments on commit c73d2b2

Please sign in to comment.