From 68be6cd0e6c03c876b93b3b45d049595c85721b3 Mon Sep 17 00:00:00 2001 From: YizhePKU Date: Sun, 2 Jun 2024 23:22:33 +0000 Subject: [PATCH] Trying to debug on the CI --- tests/terminal/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/terminal/mod.rs b/tests/terminal/mod.rs index bc375a77dc..1cbb243c40 100644 --- a/tests/terminal/mod.rs +++ b/tests/terminal/mod.rs @@ -77,5 +77,8 @@ fn command_hints_are_pwd_aware() { // Examine the terminal state. let (row, _col) = extract_cursor(&term); let text = extract_text(&term); + for line in &text { + println!("{}", line); + } assert!(text[row - 2].contains("print 'FOO'")); }