test: add playwright (resolves #12)
Commit / ci (push) Successful in 10m29s
PullRequest / publish (pull_request) Failing after 2m16s

This commit is contained in:
2026-04-03 13:27:23 +02:00
parent 2e16cf9d51
commit b3a2c80b60
5 changed files with 80 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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/
});