mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-06 15:20:25 -06:00
15 lines
278 B
JavaScript
15 lines
278 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
projectId: 'abc123',
|
|
e2e: {
|
|
specPattern: 'cypress/e2e/**/*',
|
|
},
|
|
component: {
|
|
specPattern: 'cypress/component-tests/*.spec.js',
|
|
devServer: {
|
|
bundler: 'webpack',
|
|
},
|
|
},
|
|
})
|