11 lines
223 B
TypeScript
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,
|
||
|
},
|
||
|
})
|