feat: add auto-select reply identity feature with settings and localization
This commit is contained in:
@@ -29,4 +29,14 @@ describe('settings-store attachment action', () => {
|
||||
|
||||
expect(exported.calendarInvitationParsingEnabled).toBe(false);
|
||||
});
|
||||
|
||||
it('includes reply identity auto-selection in exported settings', () => {
|
||||
useSettingsStore.getState().updateSetting('autoSelectReplyIdentity', true);
|
||||
|
||||
const exported = JSON.parse(useSettingsStore.getState().exportSettings()) as {
|
||||
autoSelectReplyIdentity?: boolean;
|
||||
};
|
||||
|
||||
expect(exported.autoSelectReplyIdentity).toBe(true);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user