19yuke2-frontend/cypress.config.ts

11 lines
223 B
TypeScript
Raw Normal View History

2023-02-05 18:11:34 +08:00
import { defineConfig } from 'cypress'
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3333',
chromeWebSecurity: false,
specPattern: 'cypress/e2e/**/*.spec.*',
supportFile: false,
},
})