This repository has been archived on 2024-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
helse-sprik/frontend/cypress.config.ts
2023-08-04 12:15:18 +02:00

20 lines
No EOL
421 B
TypeScript

import { defineConfig } from "cypress";
import { plugin } from "./cypress/plugins/index";
export default defineConfig({
viewportHeight: 1300,
viewportWidth: 1800,
requestTimeout: 10000,
defaultCommandTimeout: 10000,
video: false,
retries: {
runMode: 2,
},
e2e: {
//@ts-ignore
setupNodeEvents(on, config) {
return plugin(on, config);
},
baseUrl: "http://localhost:5173",
},
});