Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion crates/project_panel/src/project_panel_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4577,15 +4577,26 @@ async fn test_rename_survives_window_deactivation(cx: &mut gpui::TestAppContext)
.read_with(cx, |mw, _| mw.workspace().clone())
.unwrap();
let cx = &mut VisualTestContext::from_window(window.into(), cx);
let panel = workspace.update_in(cx, ProjectPanel::new);
let panel = workspace.update_in(cx, |workspace, window, cx| {
let panel = ProjectPanel::new(workspace, window, cx);
workspace.add_panel(panel.clone(), window, cx);
panel
});
cx.run_until_parked();

select_path(&panel, "root/file1.txt", cx);
panel.update_in(cx, |panel, window, cx| panel.rename(&Rename, window, cx));
cx.run_until_parked();
assert!(
panel.read_with(cx, |panel, _| panel.state.edit_state.is_some()),
"Rename should have started"
);
panel.update_in(cx, |panel, window, cx| {
assert!(
panel.filename_editor.read(cx).is_focused(window),
"The filename editor must be focused, otherwise deactivating the window blurs nothing"
);
});

cx.deactivate_window();

Expand Down