summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/compile_tests.rs1
-rw-r--r--cli/tests/info_tests.rs1
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"");