Files
aktiteil/playwright.config.ts
T
schreifuchs b3a2c80b60
Commit / ci (push) Successful in 10m29s
PullRequest / publish (pull_request) Failing after 2m16s
test: add playwright (resolves #12)
2026-04-03 13:27:23 +02:00

11 lines
223 B
TypeScript

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'pnpm run build && pnpm run preview',
port: 4173
},
testDir: 'tests',
testMatch: /(.+\.)?(test|spec)\.[jt]s/
});