mirror of
https://github.com/cypress-io/cypress.git
synced 2026-03-13 12:59:07 -05:00
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
const { defineConfig } = require('cypress')
|
|
|
|
module.exports = defineConfig({
|
|
component: {
|
|
experimentalSingleTabRunMode: true,
|
|
supportFile: false,
|
|
devServer: {
|
|
bundler: 'webpack',
|
|
},
|
|
},
|
|
})
|