test(e2e): add Cypress scaffold + CI job

This commit is contained in:
Riya
2026-02-07 16:01:13 +00:00
parent d4e5e86a20
commit 94dd8e439d
6 changed files with 1632 additions and 2 deletions

View File

@@ -10,7 +10,9 @@
"test": "vitest run --passWithNoTests --coverage",
"test:watch": "vitest",
"dev:lan": "next dev --hostname 0.0.0.0 --port 3000",
"api:gen": "orval --config ./orval.config.ts"
"api:gen": "orval --config ./orval.config.ts",
"e2e": "cypress run",
"e2e:open": "cypress open"
},
"dependencies": {
"@clerk/nextjs": "^6.37.1",
@@ -52,6 +54,7 @@
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"vitest": "^2.1.8"
"vitest": "^2.1.8",
"cypress": "^14.0.0"
}
}