mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-20 00:18:45 +01:00
Support for Group Member Labels
This commit is contained in:
@@ -14,7 +14,12 @@ const CONFIG_KEY = 'global.calling.maxGroupCallRingSize';
|
||||
|
||||
describe('isConversationTooBigToRing', () => {
|
||||
const fakeMemberships = (count: number) =>
|
||||
times(count, () => ({ aci: generateAci(), isAdmin: false }));
|
||||
times(count, () => ({
|
||||
aci: generateAci(),
|
||||
isAdmin: false,
|
||||
labelEmoji: undefined,
|
||||
labelString: undefined,
|
||||
}));
|
||||
|
||||
it('returns false if there are no memberships (i.e., for a direct conversation)', async () => {
|
||||
await updateRemoteConfig([]);
|
||||
|
||||
Reference in New Issue
Block a user