diff options
Diffstat (limited to 'cli/tests/integration/check_tests.rs')
-rw-r--r-- | cli/tests/integration/check_tests.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cli/tests/integration/check_tests.rs b/cli/tests/integration/check_tests.rs index ca80ffa94..029f89119 100644 --- a/cli/tests/integration/check_tests.rs +++ b/cli/tests/integration/check_tests.rs @@ -123,11 +123,16 @@ itest!(check_deno_not_found { }); itest!(check_deno_unstable_not_found { - args: "check --quiet check/deno_unstable_not_found/main.ts", + args: "check --quiet --no-config check/deno_unstable_not_found/main.ts", output: "check/deno_unstable_not_found/main.out", exit_code: 1, }); +itest!(check_deno_unstable_from_config { + args: "check --quiet --config check/deno_unstable_not_found/deno.json check/deno_unstable_not_found/main.ts", + output_str: Some(""), +}); + #[test] fn cache_switching_config_then_no_config() { let context = TestContext::default(); |