Files
cypress/system-tests/projects/component-tests/cypressWithoutProjectId.config.js

14 lines
250 B
JavaScript

const { defineConfig } = require('cypress')
module.exports = defineConfig({
e2e: {
specPattern: 'cypress/e2e/**/*',
},
component: {
specPattern: 'cypress/component-tests/**/*',
devServer: {
bundler: 'webpack',
},
},
})