mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +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
|
// 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,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue