From 13f554ba6dcbb96c7e3be337f167a703873fc278 Mon Sep 17 00:00:00 2001 From: continuist Date: Fri, 19 Sep 2025 17:14:07 -0400 Subject: [PATCH] Ignore test by default that requires user terminal within container --- backend/crates/tui/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/crates/tui/src/lib.rs b/backend/crates/tui/src/lib.rs index e78dc21..9a3b2db 100644 --- a/backend/crates/tui/src/lib.rs +++ b/backend/crates/tui/src/lib.rs @@ -680,6 +680,7 @@ mod tests { } #[test] + #[ignore] fn test_ui_does_not_panic() { use ratatui::prelude::*; let backend = CrosstermBackend::new(std::io::sink());