feat: implementing playwright tests

This commit is contained in:
2025-11-15 11:04:20 +00:00
parent d442bae300
commit f7015e68a7
8 changed files with 396 additions and 3 deletions

View File

@@ -8,7 +8,10 @@
"build": "vite build",
"build:dev": "vite build --mode development",
"lint": "eslint .",
"preview": "vite preview"
"preview": "vite preview",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
@@ -49,6 +52,7 @@
"input-otp": "^1.4.2",
"lucide-react": "^0.462.0",
"next-themes": "^0.3.0",
"playwright": "^1.56.1",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
@@ -59,12 +63,13 @@
"sonner": "^1.7.4",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"types": "workspace:types",
"vaul": "^0.9.9",
"zod": "^4.1.12",
"types": "workspace:types"
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.56.1",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.16.5",
"@types/react": "^18.3.23",