-
Notifications
You must be signed in to change notification settings - Fork 664
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cli-test: add ability to invoke arbitrary CLI commands (#1798)
- Loading branch information
Fil Maj
authored
May 28, 2024
1 parent
65b2332
commit a0e01c5
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
export { SlackCLI } from './cli'; | ||
export { SlackCLIProcess } from './cli/cli-process'; | ||
export { SlackTracerId, SlackProduct } from './utils/constants'; | ||
|
||
// Check for cli binary path | ||
if (!process.env.SLACK_CLI_PATH) { | ||
throw new Error('SlackCliLib: SLACK_CLI_PATH is not set'); | ||
throw new Error('Environment variable `SLACK_CLI_PATH` is not set!'); | ||
} |