mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
WIP
This commit is contained in:
parent
07675e3c55
commit
3074455386
2 changed files with 15 additions and 1 deletions
|
@ -770,6 +770,19 @@ async fn test_call_from_channel(
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[gpui::test]
|
||||||
|
async fn test_lost_channel_creation(
|
||||||
|
deterministic: Arc<Deterministic>,
|
||||||
|
cx_a: &mut TestAppContext,
|
||||||
|
cx_b: &mut TestAppContext,
|
||||||
|
) {
|
||||||
|
// Invite a member
|
||||||
|
// Create a new sub channel
|
||||||
|
// Member accepts invite
|
||||||
|
// Make sure that member can see new channel
|
||||||
|
todo!();
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq)]
|
#[derive(Debug, PartialEq)]
|
||||||
struct ExpectedChannel {
|
struct ExpectedChannel {
|
||||||
depth: usize,
|
depth: usize,
|
||||||
|
|
|
@ -76,7 +76,8 @@ export default function channel_modal(): any {
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
max_height: 400,
|
// FIXME: due to a bug in the picker's size calculation, this must be 600
|
||||||
|
max_height: 600,
|
||||||
max_width: 540,
|
max_width: 540,
|
||||||
title: {
|
title: {
|
||||||
...text(theme.middle, "sans", "on", { size: "lg" }),
|
...text(theme.middle, "sans", "on", { size: "lg" }),
|
||||||
|
|
Loading…
Reference in a new issue