diff options
Diffstat (limited to 'cli/tests/integration/mod.rs')
-rw-r--r-- | cli/tests/integration/mod.rs | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/cli/tests/integration/mod.rs b/cli/tests/integration/mod.rs index d0c693a37..42ae24142 100644 --- a/cli/tests/integration/mod.rs +++ b/cli/tests/integration/mod.rs @@ -150,6 +150,7 @@ fn cache_test() { .env("DENO_DIR", deno_dir.path()) .current_dir(util::testdata_path()) .arg("cache") + .arg("--check=all") .arg("-L") .arg("debug") .arg(module_url.to_string()) @@ -297,7 +298,6 @@ fn ts_dependency_recompilation() { let output = util::deno_cmd() .current_dir(util::testdata_path()) .env("NO_COLOR", "1") - .env("DENO_FUTURE_CHECK", "1") .arg("run") .arg("--check") .arg(&ats) @@ -321,7 +321,6 @@ fn ts_dependency_recompilation() { let output = util::deno_cmd() .current_dir(util::testdata_path()) .env("NO_COLOR", "1") - .env("DENO_FUTURE_CHECK", "1") .arg("run") .arg("--check") .arg(&ats) @@ -346,7 +345,6 @@ fn ts_no_recheck_on_redirect() { assert!(redirect_ts.is_file()); let mut cmd = Command::new(e.clone()); cmd.env("DENO_DIR", deno_dir.path()); - cmd.env("DENO_FUTURE_CHECK", "1"); let mut initial = cmd .current_dir(util::testdata_path()) .arg("run") @@ -360,7 +358,6 @@ fn ts_no_recheck_on_redirect() { let mut cmd = Command::new(e); cmd.env("DENO_DIR", deno_dir.path()); - cmd.env("DENO_FUTURE_CHECK", "1"); let output = cmd .current_dir(util::testdata_path()) .arg("run") @@ -381,6 +378,7 @@ fn ts_reload() { let mut initial = util::deno_cmd_with_deno_dir(&deno_dir) .current_dir(util::testdata_path()) .arg("cache") + .arg("--check=all") .arg(&hello_ts) .spawn() .expect("failed to spawn script"); @@ -391,6 +389,7 @@ fn ts_reload() { let output = util::deno_cmd_with_deno_dir(&deno_dir) .current_dir(util::testdata_path()) .arg("cache") + .arg("--check=all") .arg("--reload") .arg("-L") .arg("debug") @@ -654,7 +653,6 @@ fn cafile_bundle_remote_exports() { let output = util::deno_cmd() .current_dir(util::testdata_path()) - .env("DENO_FUTURE_CHECK", "1") .arg("run") .arg("--check") .arg(&test) @@ -867,7 +865,6 @@ async fn test_resolve_dns() { let output = util::deno_cmd() .current_dir(util::testdata_path()) .env("NO_COLOR", "1") - .env("DENO_FUTURE_CHECK", "1") .arg("run") .arg("--check") .arg("--allow-net") @@ -895,7 +892,6 @@ async fn test_resolve_dns() { let output = util::deno_cmd() .current_dir(util::testdata_path()) .env("NO_COLOR", "1") - .env("DENO_FUTURE_CHECK", "1") .arg("run") .arg("--check") .arg("--allow-net=127.0.0.1:4553") @@ -922,7 +918,6 @@ async fn test_resolve_dns() { let output = util::deno_cmd() .current_dir(util::testdata_path()) .env("NO_COLOR", "1") - .env("DENO_FUTURE_CHECK", "1") .arg("run") .arg("--check") .arg("--allow-net=deno.land") @@ -946,7 +941,6 @@ async fn test_resolve_dns() { let output = util::deno_cmd() .current_dir(util::testdata_path()) .env("NO_COLOR", "1") - .env("DENO_FUTURE_CHECK", "1") .arg("run") .arg("--check") .arg("resolve_dns.ts") |