diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index bf532e4045..b8be7262d2 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()