feat: password reset via email (#36) #49

Merged
marcel merged 7 commits from feat/36-password-reset into main 2026-03-23 10:13:56 +01:00
Showing only changes of commit 43defa41c4 - Show all commits

View File

@@ -61,6 +61,9 @@ test.describe('Authentication', () => {
test('logout clears the session and redirects to /login', async ({ page }) => {
await login(page);
// Wait for hydration before interacting with the nav — onclick handlers are
// only wired up after SvelteKit finishes hydrating the page client-side.
await page.waitForSelector('[data-hydrated]');
// Logout is inside the user avatar dropdown — open it first.
// Wait for the dropdown button to be visible before clicking Abmelden,
// since the {#if userMenuOpen} block renders asynchronously in Svelte.