mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-06 07:10:12 -06: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',
|
|
},
|
|
},
|
|
})
|