From 69472f78236cb5e6302854854ff4761c4252508e Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 19 Oct 2022 19:21:09 -0600 Subject: [PATCH] Ensure we can send a second frame --- crates/collab/src/integration_tests.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/collab/src/integration_tests.rs b/crates/collab/src/integration_tests.rs index 8ac898a4adff38aa990571d8c8294368d9efdf15..37dfedfe55b8d8d4fdfe341292a730eafbc0467b 100644 --- a/crates/collab/src/integration_tests.rs +++ b/crates/collab/src/integration_tests.rs @@ -228,6 +228,10 @@ async fn test_basic_calls( panic!("unexpected event") } + display.send_frame(frame.clone()); + deterministic.run_until_parked(); + assert_eq!(events_b.borrow().len(), 2); + // User A leaves the room. active_call_a.update(cx_a, |call, cx| { call.hang_up(cx).unwrap();