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

@@ -0,0 +1,11 @@
import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
baseUrl: "http://localhost:3000",
video: false,
screenshotOnRunFailure: true,
specPattern: "cypress/e2e/**/*.cy.{ts,tsx,js,jsx}",
supportFile: "cypress/support/e2e.ts",
},
});