2026-02-07 16:01:13 +00:00
|
|
|
import { defineConfig } from "cypress";
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
e2e: {
|
2026-02-07 19:02:17 +00:00
|
|
|
baseUrl: "http://localhost:3000",
|
2026-02-07 19:15:02 +00:00
|
|
|
specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}",
|
2026-02-07 16:01:13 +00:00
|
|
|
supportFile: "cypress/support/e2e.ts",
|
2026-02-12 11:08:51 +00:00
|
|
|
defaultCommandTimeout: 20_000,
|
|
|
|
|
retries: {
|
|
|
|
|
runMode: 2,
|
|
|
|
|
openMode: 0,
|
|
|
|
|
},
|
2026-02-07 16:01:13 +00:00
|
|
|
},
|
|
|
|
|
});
|