static-cms/cypress.config.ts
Daniel Lautzenheiser 799c7e6936
feat: v4.0.0 (#1016)
Co-authored-by: Denys Konovalov <kontakt@denyskon.de>
Co-authored-by: Mathieu COSYNS <64072917+Mathieu-COSYNS@users.noreply.github.com>
2024-01-03 15:14:09 -05:00

20 lines
475 B
TypeScript

import { defineConfig } from "cypress";
import setupNodeEvents from "./cypress/plugins";
export default defineConfig({
projectId: "wvw3x3",
retries: {
runMode: 2,
openMode: 0,
},
chromeWebSecurity: false,
e2e: {
video: false,
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents,
baseUrl: "http://localhost:8080",
specPattern: "cypress/e2e/*.spec.ts",
},
});