- Replace __dirname with fileURLToPath(import.meta.url) for ESM compatibility
- Start SvelteKit dev server on port 3000 with 120s webServer timeout
- Add data-hydrated attribute (set in onMount) so tests wait for hydration
- Fix nav active class assertions: text-brand-navy (not border-brand-navy)
- Fix filter button selector: exact match to avoid matching "Alle Filter löschen"
- Fix date validation test: use pressSequentially('99') to trigger dateInvalid
- Fix person/document search: navigate directly to URL with query param
(avoids debounced oninput → goto race condition in CI)
- Fix heading selector: level: 1 to avoid strict-mode with h1+h2 on page
- Fix auth redirect: return 401 from handleFetch instead of throwing redirect
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
886 B
TypeScript
26 lines
886 B
TypeScript
import { test as setup } from '@playwright/test';
|
|
import path from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
const authFile = path.join(__dirname, '.auth/user.json');
|
|
|
|
/**
|
|
* Logs in once and saves the session cookie so all E2E tests can reuse it.
|
|
* Configure credentials via environment variables:
|
|
* E2E_USERNAME (default: admin)
|
|
* E2E_PASSWORD (default: admin)
|
|
*/
|
|
setup('authenticate', async ({ page }) => {
|
|
const username = process.env.E2E_USERNAME ?? 'admin';
|
|
const password = process.env.E2E_PASSWORD ?? 'admin';
|
|
|
|
await page.goto('/login');
|
|
await page.getByLabel('Benutzername').fill(username);
|
|
await page.getByLabel('Passwort').fill(password);
|
|
await page.getByRole('button', { name: 'Anmelden' }).click();
|
|
await page.waitForURL('/');
|
|
|
|
await page.context().storageState({ path: authFile });
|
|
});
|