Skip to content
Snippets Groups Projects
Forked from TransFem.org / Sharkey
7644 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
cypress.config.ts 346 B
import { defineConfig } from 'cypress'

export default defineConfig({
  e2e: {
    // We've imported your old cypress plugins here.
    // You may want to clean this up later by importing these.
    setupNodeEvents(on, config) {
      return require('./cypress/plugins/index.js')(on, config)
    },
    baseUrl: 'http://localhost:61812',
  },
})