diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-10-15 16:46:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-15 16:46:28 -0400 |
| commit | 872dc9b1df1dec5466970f085875e50b9436e967 (patch) | |
| tree | 7b18912c73f9ec26adcb00f7540cc546ac272182 /cli/tests/testdata/task/deno.json | |
| parent | 8a736d7dc79ea1442dd043acd75aa9a8d83efb54 (diff) | |
feat(unstable/task): add `INIT_CWD` env var (#16110)
Diffstat (limited to 'cli/tests/testdata/task/deno.json')
| -rw-r--r-- | cli/tests/testdata/task/deno.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/tests/testdata/task/deno.json b/cli/tests/testdata/task/deno.json index 229315a4e..043f49b61 100644 --- a/cli/tests/testdata/task/deno.json +++ b/cli/tests/testdata/task/deno.json @@ -6,6 +6,7 @@ "strings": "deno run main.ts && deno eval \"console.log(\\\"test\\\")\"", "piped": "echo 12345 | (deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)' && deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)')", "exit_code_5": "echo $(echo 10 ; exit 2) && exit 5", - "echo_cwd": "echo $(pwd)" + "echo_cwd": "echo $(pwd)", + "echo_init_cwd": "echo $INIT_CWD" } } |
