diff --git a/frontend/src/utils/preferences.test.ts b/frontend/src/utils/preferences.test.ts index 1668d15..7b4ce07 100644 --- a/frontend/src/utils/preferences.test.ts +++ b/frontend/src/utils/preferences.test.ts @@ -16,7 +16,7 @@ describe('preferences', () => { notificationVolume: 45, notificationDurationSeconds: 14, notifications: { - camera: { enabled: false, sounds: false }, + messages: { enabled: false, sounds: false }, }, phoneScale: 110, wallpaper: 'ember', @@ -26,7 +26,7 @@ describe('preferences', () => { expect(value.settings.appearanceMode).toBe('light') expect(value.settings.notificationVolume).toBe(45) expect(value.settings.notificationDurationSeconds).toBe(14) - expect(value.settings.notifications.camera).toEqual({ + expect(value.settings.notifications.messages).toEqual({ enabled: false, sounds: false, })