Emit an event when adding a worktree to a project
This commit is contained in:
parent
04bd57b2c7
commit
a1a4c70845
2 changed files with 13 additions and 10 deletions
|
@ -2234,7 +2234,6 @@ mod tests {
|
|||
.read_with(cx_a, |project, _| project.next_remote_id())
|
||||
.await;
|
||||
|
||||
let project_a_events = Rc::new(RefCell::new(Vec::new()));
|
||||
let user_b = client_a
|
||||
.user_store
|
||||
.update(cx_a, |store, cx| {
|
||||
|
@ -2242,15 +2241,6 @@ mod tests {
|
|||
})
|
||||
.await
|
||||
.unwrap();
|
||||
project_a.update(cx_a, {
|
||||
let project_a_events = project_a_events.clone();
|
||||
move |_, cx| {
|
||||
cx.subscribe(&cx.handle(), move |_, _, event, _| {
|
||||
project_a_events.borrow_mut().push(event.clone());
|
||||
})
|
||||
.detach();
|
||||
}
|
||||
});
|
||||
|
||||
let (worktree_a, _) = project_a
|
||||
.update(cx_a, |p, cx| {
|
||||
|
@ -2262,6 +2252,17 @@ mod tests {
|
|||
.read_with(cx_a, |tree, _| tree.as_local().unwrap().scan_complete())
|
||||
.await;
|
||||
|
||||
let project_a_events = Rc::new(RefCell::new(Vec::new()));
|
||||
project_a.update(cx_a, {
|
||||
let project_a_events = project_a_events.clone();
|
||||
move |_, cx| {
|
||||
cx.subscribe(&cx.handle(), move |_, _, event, _| {
|
||||
project_a_events.borrow_mut().push(event.clone());
|
||||
})
|
||||
.detach();
|
||||
}
|
||||
});
|
||||
|
||||
// Request to join that project as client B
|
||||
let project_b = cx_b.spawn(|mut cx| {
|
||||
let client = client_b.client.clone();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue