diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-05-23 12:04:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-23 12:04:28 -0400 |
| commit | 69be1f3cf7d11bb6b440f5d1e65988ed7c76f53d (patch) | |
| tree | 561a478ac1861ded4fe767c3f3bda0745d1d269c /cli/tests/testdata/task/deno.json | |
| parent | 3c97bbe165ef0c5e4fa9b9eb637ff481d8c86884 (diff) | |
fix: deno task should actually use current exe for `deno` command (#14705)
Diffstat (limited to 'cli/tests/testdata/task/deno.json')
| -rw-r--r-- | cli/tests/testdata/task/deno.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tests/testdata/task/deno.json b/cli/tests/testdata/task/deno.json index c26e143e1..8dfc2d79c 100644 --- a/cli/tests/testdata/task/deno.json +++ b/cli/tests/testdata/task/deno.json @@ -2,6 +2,7 @@ "tasks": { "boolean_logic": "sleep 0.1 && echo 3 && echo 4 & echo 1 && echo 2 || echo NOPE", "echo": "echo 1", + "deno_echo": "deno eval 'console.log(5)'", "strings": "deno run main.ts && deno eval \"console.log(\\\"test\\\")\"", "exit_code_5": "echo $(echo 10 ; exit 2) && exit 5" } |
