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>
16 lines
278 B
TypeScript
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,
|
|
},
|
|
})
|