feat: migrate from shoutrr to notfy

This commit is contained in:
GitHub Actions
2026-02-19 22:50:05 +00:00
parent 1189fa59b6
commit c68804d37e
33 changed files with 1718 additions and 761 deletions
@@ -425,13 +425,13 @@ describe('Security Page - Functional Tests', () => {
})
})
it('should disable Notifications button when Cerberus is disabled', async () => {
it('should keep Notifications button enabled when Cerberus is disabled (navigation-only)', async () => {
vi.mocked(securityApi.getSecurityStatus).mockResolvedValue(mockSecurityStatusCerberusDisabled)
await renderSecurityPage()
await waitFor(() => {
expect(screen.getByRole('button', { name: /Notifications/i })).toBeDisabled()
expect(screen.getByRole('button', { name: /Notifications/i })).not.toBeDisabled()
})
})
})