mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-03 05:20:38 -05:00
66c1e6ccf9
* add an extra test for migration * refactor: use async tools to deal with files Co-authored-by: Barthélémy Ledoux <bart@cypress.io>
19 lines
461 B
JavaScript
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,
|
|
},
|
|
})
|