Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cmd/platform/deploy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,14 +213,15 @@ func TestDeployCommand_DeployHook(t *testing.T) {
"./deployer.sh: No such file or directory",
"./deployer.sh: not found",
"no such file or directory: ./deployer.sh",
"Unknown command: ./deployer.sh",
},
},
"echos stdout output to standard out": {
command: "echo example_output_goes_here",
expectedStdout: "example_output_goes_here",
},
"echos stderr output to standard err": {
command: ">&2 echo 'uhoh'",
command: "echo 'uhoh' >&2",
expectedStderr: []string{"uhoh"},
},
"works well with shell built ins": {
Expand Down