FIX - update notification preference test

This commit is contained in:
Leon.Schmidt
2026-08-06 16:58:10 +02:00
parent de372979e6
commit 2c1730062b
+2 -2
View File
@@ -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,
})