9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}',
|
|
baseUrl: 'http://localhost:4173'
|
|
}
|
|
})
|