Files
helm-dashboard/frontend/cypress.config.ts
yuri-sakharov f647a3db03 Added Error Boundary (#649)
* Added Error Boundary

* Test improvements

* Introduced useDevLogger

* Updated Cypress to latest and aligned the tests

* Added eslint-enable

* Set allowCypressEnv: false for security reasons.
2026-02-08 18:22:04 +00:00

19 lines
342 B
TypeScript

import { defineConfig } from "cypress";
export default defineConfig({
allowCypressEnv: false,
component: {
devServer: {
framework: "react",
bundler: "vite",
},
},
e2e: {
baseUrl: "http://localhost:5173",
// setupNodeEvents(on, config) {
// // implement node event listeners here
// },
},
});