mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-25 16:40:03 -05:00
14 lines
250 B
JavaScript
14 lines
250 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
specPattern: 'cypress/e2e/**/*',
|
|
},
|
|
component: {
|
|
specPattern: 'cypress/component-tests/**/*',
|
|
devServer: {
|
|
bundler: 'webpack',
|
|
},
|
|
},
|
|
})
|