mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-07 23:40:21 -05:00
3f0d150962
Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Mark Noonan <mark@cypress.io>
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
experimentalRunAllSpecs: true,
|
|
supportFile: false,
|
|
specPattern: '**/*.cy.js',
|
|
},
|
|
})
|