diff options
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 42172a771..cb1bb27a3 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -10,7 +10,6 @@ use test_util as util; #[test] fn std_tests() { let dir = TempDir::new().expect("tempdir fail"); - let std_config = util::root_path().join("std/tsconfig_test.json"); let status = util::deno_cmd() .env("DENO_DIR", dir.path()) .current_dir(util::root_path()) @@ -18,8 +17,6 @@ fn std_tests() { .arg("--unstable") .arg("--seed=86") // Some tests rely on specific random numbers. .arg("-A") - .arg("--config") - .arg(std_config.to_str().unwrap()) // .arg("-Ldebug") .arg("std/") .spawn() |