static-cms/cypress.config.ts

20 lines
475 B
TypeScript
Raw Permalink Normal View History

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",
},
});