💄
This commit is contained in:
parent
bb9ce86a29
commit
df285def59
1 changed files with 6 additions and 2 deletions
|
@ -74,7 +74,11 @@ async fn test_share_project_in_room(
|
||||||
let client_b = server.create_client(cx_b, "user_b").await;
|
let client_b = server.create_client(cx_b, "user_b").await;
|
||||||
let client_c = server.create_client(cx_c, "user_c").await;
|
let client_c = server.create_client(cx_c, "user_c").await;
|
||||||
server
|
server
|
||||||
.make_contacts(vec![(&client_a, cx_a), (&client_b, cx_b), (&client_c, cx_c)])
|
.make_contacts(vec![
|
||||||
|
(&client_a, cx_a),
|
||||||
|
(&client_b, cx_b),
|
||||||
|
(&client_c, cx_c),
|
||||||
|
])
|
||||||
.await;
|
.await;
|
||||||
|
|
||||||
client_a
|
client_a
|
||||||
|
@ -166,8 +170,8 @@ async fn test_share_project_in_room(
|
||||||
pending: vec!["user_c".to_string()]
|
pending: vec!["user_c".to_string()]
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
let _call_c = incoming_call_c.next().await.unwrap().unwrap();
|
|
||||||
|
|
||||||
|
let _call_c = incoming_call_c.next().await.unwrap().unwrap();
|
||||||
client_c
|
client_c
|
||||||
.user_store
|
.user_store
|
||||||
.update(cx_c, |user, _| user.decline_call())
|
.update(cx_c, |user, _| user.decline_call())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue