446333e616
Vue CLI 5 Cypress 10
12 lines
316 B
TypeScript
12 lines
316 B
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
fixturesFolder: 'tests/e2e/fixtures',
|
|
screenshotsFolder: 'tests/e2e/screenshots',
|
|
videosFolder: 'tests/e2e/videos',
|
|
e2e: {
|
|
specPattern: 'tests/e2e/specs/**/*.cy.{js,jsx,ts,tsx}',
|
|
supportFile: 'tests/e2e/support/index.js',
|
|
},
|
|
})
|