garage-erp/apps/dashboard/cypress.config.ts
2026-03-27 16:20:46 +03:00

17 lines
456 B
TypeScript

import { defineConfig } from "cypress"
export default defineConfig({
e2e: {
baseUrl: "http://localhost:3000",
env: {
NEXT_PUBLIC_API_URL: "https://newgarage.yslootahtech.com"
},
specPattern: "cypress/e2e/**/*.cy.{ts,tsx}",
supportFile: "cypress/support/e2e.ts",
viewportWidth: 1280,
viewportHeight: 720,
defaultCommandTimeout: 10000,
requestTimeout: 10000,
},
})