1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-12-12 10:13:46 +02:00
uptime-kuma/cypress.config.ts

16 lines
397 B
TypeScript
Raw Normal View History

import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
2022-06-16 11:28:17 +02:00
baseUrl: "http://localhost:3002",
defaultCommandTimeout: 10000,
pageLoadTimeout: 60000,
viewportWidth: 1920,
viewportHeight: 1080,
2022-06-16 11:28:17 +02:00
specPattern: ["cypress/e2e/setup.cy.ts", "cypress/e2e/**/*.ts"],
},
env: {
2022-06-16 11:28:17 +02:00
baseUrl: "http://localhost:3002",
},
});