vitesse/cypress.config.ts

11 lines
223 B
TypeScript
Raw Normal View History

2022-06-30 13:25:29 +08:00
import { defineConfig } from 'cypress'
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3333',
chromeWebSecurity: false,
specPattern: 'cypress/e2e/**/*.spec.*',
supportFile: false,
},
})