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 09:28:17 +00:00
baseUrl: "http://localhost:3002",
defaultCommandTimeout: 10000,
pageLoadTimeout: 60000,
viewportWidth: 1920,
viewportHeight: 1080,
2022-06-16 09:28:17 +00:00
specPattern: ["cypress/e2e/setup.cy.ts", "cypress/e2e/**/*.ts"],
},
env: {
2022-06-16 09:28:17 +00:00
baseUrl: "http://localhost:3002",
},
});