fix: Update ConfigService test to match actual default notification preferences

This commit is contained in:
Peter Steinberger 2025-07-31 15:01:57 +02:00
parent 4523a21f6c
commit ffa5c42dc1

View file

@ -426,14 +426,14 @@ describe('ConfigService', () => {
// Should return DEFAULT_NOTIFICATION_PREFERENCES instead of undefined // Should return DEFAULT_NOTIFICATION_PREFERENCES instead of undefined
expect(preferences).toEqual({ expect(preferences).toEqual({
enabled: false, // Master switch is OFF by default enabled: false, // Master switch is OFF by default
sessionStart: true, sessionStart: false,
sessionExit: true, sessionExit: true,
commandCompletion: true, commandCompletion: false,
commandError: true, commandError: true,
bell: true, bell: true,
claudeTurn: false, claudeTurn: false,
soundEnabled: true, soundEnabled: true,
vibrationEnabled: true, vibrationEnabled: false,
}); });
}); });