diff options
-rw-r--r-- | cli/tests/integration_tests.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index f2d1c1770..f19966fdf 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -5409,7 +5409,9 @@ console.log("finish"); .arg("--target") .arg("x86_64-unknown-linux-gnu") .arg("./test_util/std/examples/welcome.ts") - .stdout(std::process::Stdio::piped()) + // TODO(kt3k): Prints command output to the test log for debugging purpose. + // Uncomment this line when this test become stable. + //.stdout(std::process::Stdio::piped()) .spawn() .unwrap() .wait_with_output() |