Files
cypress/system-tests/projects/run-all-specs/cypress.config.js
T
2022-12-01 12:20:39 -06:00

10 lines
184 B
JavaScript

const { defineConfig } = require('cypress')
module.exports = defineConfig({
e2e: {
experimentalRunAllSpecs: true,
supportFile: false,
specPattern: '**/*.cy.js',
},
})