mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-14 03:00:21 -06:00
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
component: {
|
|
setupNodeEvents (on, config) {},
|
|
specPattern: 'src/**/*spec.{js,tsx}',
|
|
},
|
|
})
|