Files
openclaw-mission-control/frontend/cypress.config.ts

15 lines
320 B
TypeScript
Raw Normal View History

import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
baseUrl: "http://localhost:3000",
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}",
supportFile: "cypress/support/e2e.ts",
defaultCommandTimeout: 20_000,
retries: {
runMode: 2,
openMode: 0,
},
},
});