We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85f5c96 commit a7eaa0fCopy full SHA for a7eaa0f
1 file changed
cmd/platform/deploy_test.go
@@ -213,14 +213,15 @@ func TestDeployCommand_DeployHook(t *testing.T) {
213
"./deployer.sh: No such file or directory",
214
"./deployer.sh: not found",
215
"no such file or directory: ./deployer.sh",
216
+ "Unknown command: ./deployer.sh",
217
},
218
219
"echos stdout output to standard out": {
220
command: "echo example_output_goes_here",
221
expectedStdout: "example_output_goes_here",
222
223
"echos stderr output to standard err": {
- command: ">&2 echo 'uhoh'",
224
+ command: "echo 'uhoh' >&2",
225
expectedStderr: []string{"uhoh"},
226
227
"works well with shell built ins": {
0 commit comments