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/integration/task_tests.rs | |
parent | 3c97bbe165ef0c5e4fa9b9eb637ff481d8c86884 (diff) |
fix: deno task should actually use current exe for `deno` command (#14705)
Diffstat (limited to 'cli/tests/integration/task_tests.rs')
-rw-r--r-- | cli/tests/integration/task_tests.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/integration/task_tests.rs b/cli/tests/integration/task_tests.rs index 82a101169..16370dabb 100644 --- a/cli/tests/integration/task_tests.rs +++ b/cli/tests/integration/task_tests.rs @@ -78,3 +78,10 @@ itest!(task_additional_args_no_logic { output: "task/task_additional_args_no_logic.out", envs: vec![("NO_COLOR".to_string(), "1".to_string())], }); + +itest!(task_deno_exe_no_env { + args_vec: vec!["task", "-q", "--config", "task/deno.json", "deno_echo"], + output: "task/task_deno_exe_no_env.out", + envs: vec![("NO_COLOR".to_string(), "1".to_string())], + env_clear: true, +}); |