summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/task/deno.json
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-10-15 16:46:28 -0400
committerGitHub <noreply@github.com>2022-10-15 16:46:28 -0400
commit872dc9b1df1dec5466970f085875e50b9436e967 (patch)
tree7b18912c73f9ec26adcb00f7540cc546ac272182 /cli/tests/testdata/task/deno.json
parent8a736d7dc79ea1442dd043acd75aa9a8d83efb54 (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.json3
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"
}
}