Skip to content

Commit

Permalink
Update for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vegeris committed Jul 10, 2024
1 parent 178223c commit 877051e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/cli-test/src/cli/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ export const shell = {
},
assembleShellEnv: function assembleShellEnv(): Record<string, string | undefined> {
const spawnedEnv = { ...process.env };
if (process.platform === "win32"){
spawnedEnv.PATH = process.env.PATH;
}
// Always enable test trace output
spawnedEnv.SLACK_TEST_TRACE = 'true';
// Skip prompts for AAA request and directly send a request
Expand Down

0 comments on commit 877051e

Please sign in to comment.