diff --git a/crates/terminal_view/src/terminal_view.rs b/crates/terminal_view/src/terminal_view.rs index 6b1f7e6819e1be3a12be7bedd02964008ddb7d69..c9d7c0a3c4f48f696c1cb2bc7834465ab39cf477 100644 --- a/crates/terminal_view/src/terminal_view.rs +++ b/crates/terminal_view/src/terminal_view.rs @@ -1999,6 +1999,8 @@ mod tests { #[gpui::test] async fn test_custom_title_initially_none(cx: &mut TestAppContext) { + cx.executor().allow_parking(); + let (project, workspace) = init_test(cx).await; let terminal = project @@ -2027,6 +2029,8 @@ mod tests { #[gpui::test] async fn test_set_custom_title(cx: &mut TestAppContext) { + cx.executor().allow_parking(); + let (project, workspace) = init_test(cx).await; let terminal = project @@ -2056,6 +2060,8 @@ mod tests { #[gpui::test] async fn test_set_custom_title_empty_becomes_none(cx: &mut TestAppContext) { + cx.executor().allow_parking(); + let (project, workspace) = init_test(cx).await; let terminal = project @@ -2091,6 +2097,8 @@ mod tests { #[gpui::test] async fn test_custom_title_marks_needs_serialize(cx: &mut TestAppContext) { + cx.executor().allow_parking(); + let (project, workspace) = init_test(cx).await; let terminal = project @@ -2121,6 +2129,8 @@ mod tests { #[gpui::test] async fn test_tab_content_uses_custom_title(cx: &mut TestAppContext) { + cx.executor().allow_parking(); + let (project, workspace) = init_test(cx).await; let terminal = project @@ -2159,6 +2169,8 @@ mod tests { async fn test_tab_content_shows_terminal_title_when_custom_title_directly_set_empty( cx: &mut TestAppContext, ) { + cx.executor().allow_parking(); + let (project, workspace) = init_test(cx).await; let terminal = project