summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-09-02 12:31:22 -0400
committerGitHub <noreply@github.com>2020-09-02 18:31:22 +0200
commita4439800e69c5e16c7de54171e9d0612860ca738 (patch)
tree06a1b0fb270b3779ce806156c11da9ba04e73980 /cli/tests/integration_tests.rs
parent5db200b6abcf335b9caad94c4992aac8a04d6caf (diff)
Remove unnecessary stdout pipes in tests (#7322)
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 bf532e404..b8be7262d 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -3313,7 +3313,6 @@ fn should_not_panic_on_undefined_home_environment_variable() {
.arg("run")
.arg("cli/tests/echo.ts")
.env_remove("HOME")
- .stdout(std::process::Stdio::piped())
.spawn()
.unwrap()
.wait_with_output()
@@ -3328,7 +3327,6 @@ fn should_not_panic_on_undefined_deno_dir_environment_variable() {
.arg("run")
.arg("cli/tests/echo.ts")
.env_remove("DENO_DIR")
- .stdout(std::process::Stdio::piped())
.spawn()
.unwrap()
.wait_with_output()
@@ -3345,7 +3343,6 @@ fn should_not_panic_on_undefined_deno_dir_and_home_environment_variables() {
.arg("cli/tests/echo.ts")
.env_remove("DENO_DIR")
.env_remove("HOME")
- .stdout(std::process::Stdio::piped())
.spawn()
.unwrap()
.wait_with_output()