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
expect(preferences).toEqual({
enabled: false, // Master switch is OFF by default
sessionStart: true,
sessionStart: false,
sessionExit: true,
commandCompletion: true,
commandCompletion: false,
commandError: true,
bell: true,
claudeTurn: false,
soundEnabled: true,
vibrationEnabled: true,
vibrationEnabled: false,
});
});