Skip to content

Commit

Permalink
release: @slack/cli-test@0.2.2+cli.2.27.1 (#1850)
Browse files Browse the repository at this point in the history
  • Loading branch information
vegeris authored Jul 22, 2024
2 parents 4e9c7a7 + 8556db9 commit 966d8d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/cli-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@slack/cli-test",
"version": "0.2.1+cli.2.26.0",
"version": "0.2.2+cli.2.27.1",
"description": "Node.js bindings for the Slack CLI for use in automated testing",
"author": "Salesforce, Inc.",
"license": "MIT",
Expand Down
3 changes: 1 addition & 2 deletions packages/cli-test/src/cli/commands/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,9 @@ export default {
return new Promise((resolve, reject) => {
// kill the shell process
shell.kill(proc).then(() => {

// Due to the complexity of gracefully shutting down processes on Windows / lack of interrupt signal support,
// we don't wait for the SLACK_TRACE_PLATFORM_RUN_STOP trace on Windows
if (process.platform === "win32") {
if (process.platform === 'win32') {
resolve();
}

Expand Down
2 changes: 1 addition & 1 deletion packages/cli-test/src/cli/shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export const shell = {
},
assembleShellEnv: function assembleShellEnv(): Record<string, string | undefined> {
const spawnedEnv = { ...process.env };
if (process.platform === "win32"){
if (process.platform === 'win32') {
spawnedEnv.PATH = process.env.PATH;
}
// Always enable test trace output
Expand Down

0 comments on commit 966d8d9

Please sign in to comment.