diff options
| author | HasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com> | 2024-09-11 18:39:47 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-11 17:39:47 +0200 |
| commit | 1463a4ad5805b1b29f33b695ce19d4c42b671790 (patch) | |
| tree | d625cadfd283e41da78b65998ad10036619ba7bb /tests/specs/task/init_cwd_already_set | |
| parent | c64aa50c0e4219ef623a6ec3b939ac10a4568563 (diff) | |
chore: deprecate task itests (#25558)
This PR is part of #22907
Diffstat (limited to 'tests/specs/task/init_cwd_already_set')
3 files changed, 15 insertions, 0 deletions
diff --git a/tests/specs/task/init_cwd_already_set/__test__.jsonc b/tests/specs/task/init_cwd_already_set/__test__.jsonc new file mode 100644 index 000000000..30e2091ea --- /dev/null +++ b/tests/specs/task/init_cwd_already_set/__test__.jsonc @@ -0,0 +1,9 @@ +{ + "args": "task -q --config deno.json echo_init_cwd", + "output": "task_init_cwd_already_set.out", + "envs": { + "NO_COLOR": "1", + "INIT_CWD": "HELLO" + }, + "exitCode": 0 +} diff --git a/tests/specs/task/init_cwd_already_set/deno.json b/tests/specs/task/init_cwd_already_set/deno.json new file mode 100644 index 000000000..93abead1d --- /dev/null +++ b/tests/specs/task/init_cwd_already_set/deno.json @@ -0,0 +1,5 @@ +{ + "tasks": { + "echo_init_cwd": "echo $INIT_CWD" + } +} diff --git a/tests/specs/task/init_cwd_already_set/task_init_cwd_already_set.out b/tests/specs/task/init_cwd_already_set/task_init_cwd_already_set.out new file mode 100644 index 000000000..e427984d4 --- /dev/null +++ b/tests/specs/task/init_cwd_already_set/task_init_cwd_already_set.out @@ -0,0 +1 @@ +HELLO |
