mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-22 01:18:19 +01:00
Switch remote config fetching to use new endpoint
This commit is contained in:
@@ -36,14 +36,12 @@ describe('isConversationTooBigToRing', () => {
|
||||
});
|
||||
|
||||
it('returns whether there are 16 or more people in the group, if the remote config value is bogus', async () => {
|
||||
await updateRemoteConfig([
|
||||
{ name: CONFIG_KEY, value: 'uh oh', enabled: true },
|
||||
]);
|
||||
await updateRemoteConfig([{ name: CONFIG_KEY, value: 'uh oh' }]);
|
||||
textMaximum(16);
|
||||
});
|
||||
|
||||
it('returns whether there are 9 or more people in the group, if the remote config value is 9', async () => {
|
||||
await updateRemoteConfig([{ name: CONFIG_KEY, value: '9', enabled: true }]);
|
||||
await updateRemoteConfig([{ name: CONFIG_KEY, value: '9' }]);
|
||||
textMaximum(9);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user