eslint-config/fixtures/vitesse/cypress.config.ts

11 lines
223 B
TypeScript
Raw Permalink Normal View History

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