mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 03:38:04 +00:00
* Added Error Boundary * Test improvements * Introduced useDevLogger * Updated Cypress to latest and aligned the tests * Added eslint-enable * Set allowCypressEnv: false for security reasons.
19 lines
342 B
TypeScript
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
|
|
// },
|
|
},
|
|
});
|