mirror of
https://github.com/cypress-io/cypress.git
synced 2026-03-02 04:49:22 -06:00
12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
'video': false,
|
|
'viewportWidth': 500,
|
|
'viewportHeight': 800,
|
|
'experimentalFetchPolyfill': true,
|
|
'component': {
|
|
devServer: require('@cypress/react/plugins/react-scripts'),
|
|
},
|
|
})
|