Allow creating directories from the project panel

This commit is contained in:
Max Brunsfeld 2022-05-04 16:47:11 -07:00
parent a2c22a5e43
commit 40e0f10195
4 changed files with 166 additions and 57 deletions

View file

@ -1849,7 +1849,9 @@ mod tests {
let entry = project_b
.update(cx_b, |project, cx| {
project.create_file((worktree_id, "c.txt"), cx).unwrap()
project
.create_entry((worktree_id, "c.txt"), false, cx)
.unwrap()
})
.await
.unwrap();