Skip to content

Commit 34dd984

Browse files
committed
test: add no capture for name log
1 parent 1b8ab5d commit 34dd984

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

crates/libs/kill_tree/tests/test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ fn kill_tree_default() {
5050
} => {
5151
assert_eq!(*process_id, target_process_id);
5252
assert_eq!(*parent_process_id, std::process::id());
53+
println!("name: {}", name);
5354
assert!(name.starts_with("node"));
5455
}
5556
kill_tree::Output::MaybeAlreadyTerminated { .. } => {

crates/tools/dev/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ fn build(target: &str) {
8383
}
8484

8585
fn test() {
86-
run!("cargo test --workspace --all-targets --all-features");
86+
run!("cargo test --workspace --all-targets --all-features -- --nocapture");
8787
}
8888

8989
fn bench() {

0 commit comments

Comments
 (0)