Skip to content

Commit a3d54db

Browse files
committed
test: comment out console log
1 parent 59ddb12 commit a3d54db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/libs/kill_tree/tests/test.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ fn get_node_script_spawn_infinite_child() -> String {
1616
const child = spawn('node', ['-e', 'setInterval(() => {}, 1000);'], {
1717
stdio: 'inherit',
1818
});
19-
child.on('exit', (code, signal) => {
20-
console.log('child process exited with ' +
21-
`code ${code} and signal ${signal}`);
22-
});
19+
// child.on('exit', (code, signal) => {
20+
// console.log('child process exited with ' +
21+
// `code ${code} and signal ${signal}`);
22+
// });
2323
setInterval(() => {}, 1000);
2424
"#
2525
.to_string()

0 commit comments

Comments
 (0)