Skip to content

Commit

Permalink
fix premature exit of test process on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bholloway committed Jun 9, 2021
1 parent fb09fae commit 514cefb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/test-my-cli/operations/exec.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ exports.create = (command) => {
addOrRemove(false);
resolve({
index, root, caller, cwd, env, meta, code, stdout,
stderr: caughtError ? caughtError.toString() : stderr
stderr: [ stderr, caughtError ].filter(Boolean).map(String).join('\n')
});
}
})
Expand Down

0 comments on commit 514cefb

Please sign in to comment.