Add booking checkout and webhook coverage
Some checks failed
Deploy Holiday Property Booking / deploy (push) Failing after 4m54s
Playwright Holiday Property Booking / playwright (push) Failing after 2m32s
Test & Build Holiday Property Booking / test-build (push) Successful in 1m44s

This commit is contained in:
2026-05-26 09:08:43 +00:00
parent 0aaba14300
commit d1314f2181
9 changed files with 2753 additions and 3 deletions

View File

@@ -7,6 +7,7 @@
"build": "next build",
"start": "node .next/standalone/server.js",
"lint": "eslint .",
"test": "vitest run",
"test:e2e": "playwright test",
"prisma:generate": "prisma generate",
"prisma:migrate:dev": "prisma migrate dev",
@@ -22,14 +23,18 @@
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "20.17.6",
"@types/react": "19.2.14",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.0.0",
"jsdom": "^25.0.1",
"prisma": "^6.10.1",
"sass": "^1.89.2",
"tsx": "^4.20.3",
"typescript": "5.9.3"
"typescript": "5.9.3",
"vitest": "^2.1.8"
}
}