17 lines
456 B
TypeScript
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,
|
|
},
|
|
})
|