Implement integration tests with Playwright

This commit is contained in:
Hördle Bot
2025-12-06 18:31:40 +01:00
parent 2e1f1e599b
commit 4b4468deeb
9 changed files with 267 additions and 7 deletions

View File

@@ -6,7 +6,9 @@
"dev": "next dev",
"build": "next build",
"start": "prisma migrate deploy && next start",
"lint": "eslint"
"lint": "eslint",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@prisma/client": "^6.19.0",
@@ -22,6 +24,7 @@
"unist-util-visit-parents": "^6.0.2"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^19",