Files
cypress/system-tests/projects/migration-e2e-component-default-everything/expected-cypress.config.js
T
Lachlan Miller 66c1e6ccf9 chore: improve migration flow test coverage (#20576)
* add an extra test for migration

* refactor: use async tools to deal with files

Co-authored-by: Barthélémy Ledoux <bart@cypress.io>
2022-03-14 12:46:13 +10:00

19 lines
461 B
JavaScript

const { defineConfig } = require('cypress')
module.exports = defineConfig({
viewportWidth: 1200,
test: 'value',
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents (on, config) {
return require('./cypress/plugins/index.js')(on, config)
},
viewportWidth: 1600,
},
component: {
setupNodeEvents (on, config) {},
viewportWidth: 400,
},
})