summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-12-07 10:49:58 +0000
committerGitHub <noreply@github.com>2020-12-07 21:49:58 +1100
commitb77d6cb29e4437f4783368aaa3b1d5c972470ad0 (patch)
tree17b25cadd5a769c725a1b494c5ca199e4a67b294 /cli/tests/integration_tests.rs
parent301d3e4b6849d24154ac2d65c00a9b30223d000e (diff)
chore(std): Remove tsconfig_test.json (#8629)
Ref #8050
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs3
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()