WIP: Add test for panic, temporarily rollback synchronization changes

This commit is contained in:
Mikayla 2023-10-21 03:05:57 -07:00
parent fd8e6110b1
commit 5365fd2149
No known key found for this signature in database
3 changed files with 102 additions and 9 deletions

View file

@ -39,3 +39,7 @@ fn room_participants(room: &ModelHandle<Room>, cx: &mut TestAppContext) -> RoomP
RoomParticipants { remote, pending }
})
}
fn channel_id(room: &ModelHandle<Room>, cx: &mut TestAppContext) -> u64 {
cx.read(|cx| room.read(cx).channel_id().unwrap())
}