diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2022-12-09 10:54:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-09 10:54:24 -0500 |
| commit | 653aebfa1aa9121070df98ee88474b5f821fb15d (patch) | |
| tree | 90766bc70aa83f4f16ec1c517e495cd7c6a98fbd /cli/tests | |
| parent | cb6700fa5aac03fb3e082f9ed2e01d74238e6a99 (diff) | |
fix: respect the `--quiet` flag in more cases (#16998)
Diffstat (limited to 'cli/tests')
| -rw-r--r-- | cli/tests/compile_tests.rs | 1 | ||||
| -rw-r--r-- | cli/tests/info_tests.rs | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/cli/tests/compile_tests.rs b/cli/tests/compile_tests.rs index 970ef5ee3..30d882c3b 100644 --- a/cli/tests/compile_tests.rs +++ b/cli/tests/compile_tests.rs @@ -153,7 +153,6 @@ mod compile { .wait_with_output() .unwrap(); assert!(!output.status.success()); - println!("{:#?}", &output); assert_eq!(output.stdout, b"hello\n"); let stderr = String::from_utf8(output.stderr).unwrap(); let stderr = util::strip_ansi_codes(&stderr).to_string(); diff --git a/cli/tests/info_tests.rs b/cli/tests/info_tests.rs index 5818fe3be..a255eab4f 100644 --- a/cli/tests/info_tests.rs +++ b/cli/tests/info_tests.rs @@ -34,7 +34,6 @@ mod init { .unwrap(); let str_output = std::str::from_utf8(&output.stdout).unwrap().trim(); - eprintln!("{}", str_output); // check the output of the test.ts program. assert!(str_output.contains("emit: ")); assert_eq!(output.stderr, b""); |
