Files
tolaria/playwright.config.ts
lucaronin 9c49c3eea9 Add comprehensive E2E tests for all core flows (M5 Task 5)
17 new tests covering: open note in editor, sidebar filtering, search,
multiple tabs with switching/closing, inspector properties/relationships/
backlinks/git history, preview snippets, and full create note flow.
Fixed test isolation with workers=1. Total: 44 E2E + 44 unit tests.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 21:29:04 +01:00

16 lines
278 B
TypeScript

import { defineConfig } from '@playwright/test'
export default defineConfig({
testDir: './e2e',
timeout: 30000,
workers: 1,
use: {
baseURL: 'http://localhost:5173',
},
webServer: {
command: 'pnpm dev',
port: 5173,
reuseExistingServer: true,
},
})