feat: add manager guide and contextual help

This commit is contained in:
Bastian Wagner
2026-08-02 09:22:16 +02:00
parent 6eab6251d5
commit 0e8ac74116
43 changed files with 1002 additions and 6 deletions

View File

@@ -66,6 +66,11 @@ describe('app routing', () => {
expect(teamRoute?.children?.some((route) => route.path === 'more/public-access')).toBe(true);
});
it('registers the guide below the protected team shell', () => {
const teamRoute = routes.find((route) => route.path === 'team/:id');
expect(teamRoute?.children?.some((route) => route.path === 'more/guide')).toBe(true);
});
it('accepts the password reset URL generated by the backend', async () => {
expect(routes.some((route) => route.path === 'password-change/:hash')).toBe(true);
await router.navigateByUrl('/password-change/reset-hash');