mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-02 04:50:06 -05:00
12 lines
227 B
JavaScript
12 lines
227 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
component: {
|
|
experimentalSingleTabRunMode: true,
|
|
devServer: {
|
|
framework: 'create-react-app',
|
|
bundler: 'webpack',
|
|
},
|
|
},
|
|
})
|