Fix: more signal-backed conversions

This commit is contained in:
shamoon
2026-07-17 22:52:54 -07:00
parent f8a641b402
commit 4c0df0506a
39 changed files with 319 additions and 220 deletions
@@ -242,7 +242,7 @@ describe('SettingsComponent', () => {
activatedRoute.snapshot.fragment = '#notifications'
const scrollSpy = jest.spyOn(viewportScroller, 'scrollToAnchor')
component.ngOnInit()
expect(component.activeNavID).toEqual(4) // Notifications
expect(component.activeNavID()).toEqual(4) // Notifications
component.ngAfterViewInit()
expect(scrollSpy).toHaveBeenCalledWith('#notifications')
})