- Vitest tests for Sidebar, NoteList, Inspector (7 tests) - Playwright E2E tests verifying four-panel layout renders (2 tests) - All tests passing: cargo test (10), pnpm test (7), pnpm test:e2e (2) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
264 B
TypeScript
15 lines
264 B
TypeScript
import { defineConfig } from '@playwright/test'
|
|
|
|
export default defineConfig({
|
|
testDir: './e2e',
|
|
timeout: 30000,
|
|
use: {
|
|
baseURL: 'http://localhost:5173',
|
|
},
|
|
webServer: {
|
|
command: 'pnpm dev',
|
|
port: 5173,
|
|
reuseExistingServer: true,
|
|
},
|
|
})
|