mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-25 09:25:50 +00:00
fix: Update ConfigService test to match actual default notification preferences
This commit is contained in:
parent
4523a21f6c
commit
ffa5c42dc1
1 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue