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

20 lines
421 B
TypeScript
Raw Normal View History

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