Skip to content
Snippets Groups Projects
cypress.config.ts 202 B
import { defineConfig } from "cypress";

export default defineConfig({
  chromeWebSecurity: false
  e2e: {
    setupNodeEvents(on, config) {
      // implement node event listeners here
    },
  },
});