mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 07:34:00 -05:00
13 lines
268 B
JavaScript
13 lines
268 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
excludeSpecPattern: '*.html',
|
|
supportFile: 'cypress/support/e2e.js',
|
|
},
|
|
component: {
|
|
excludeSpecPattern: '*.html',
|
|
supportFile: 'cypress/support/e2e.js',
|
|
},
|
|
})
|