Files
openclaw-mission-control/frontend/cypress.config.ts
2026-02-07 16:01:13 +00:00

12 lines
278 B
TypeScript

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",
},
});