Skip to content
Snippets Groups Projects
cypress.config.ts 335 B
Newer Older
import { defineConfig } from 'cypress';

export default defineConfig({
  e2e: {
    setupNodeEvents(on, config) {
      // implement node event listeners here
    },
rhenck's avatar
rhenck committed
    // baseUrl: 'http://localhost:4202',
    fixturesFolder: 'e2e/fixtures',
    supportFile: 'e2e/support/e2e.ts',
rhenck's avatar
rhenck committed
    specPattern: 'e2e/tests/**/*.spec.cy.ts'