From 91fefae96ad8b14feec6db247e5b2a02788a771d Mon Sep 17 00:00:00 2001 From: Isaac Clayton Date: Thu, 14 Jul 2022 16:05:10 +0200 Subject: [PATCH] Add retries to failing terminal test --- crates/terminal/src/terminal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/terminal/src/terminal.rs b/crates/terminal/src/terminal.rs index 12c092d6e6..b0bdf56872 100644 --- a/crates/terminal/src/terminal.rs +++ b/crates/terminal/src/terminal.rs @@ -468,7 +468,7 @@ mod tests { ///Basic integration test, can we get the terminal to show up, execute a command, //and produce noticable output? - #[gpui::test] + #[gpui::test(retries = 5)] async fn test_terminal(cx: &mut TestAppContext) { let terminal = cx.add_view(Default::default(), |cx| Terminal::new(None, false, cx));