From 2c1730062b7b654673c0f0f4ddda5369fcd1b61e Mon Sep 17 00:00:00 2001 From: "Leon.Schmidt" Date: Thu, 6 Aug 2026 16:58:10 +0200 Subject: [PATCH] FIX - update notification preference test --- frontend/src/utils/preferences.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, })