vitesse/cypress.config.ts
2022-06-30 13:25:36 +08:00

11 lines
223 B
TypeScript

import { defineConfig } from 'cypress'
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3333',
chromeWebSecurity: false,
specPattern: 'cypress/e2e/**/*.spec.*',
supportFile: false,
},
})