18 lines
368 B
JavaScript
18 lines
368 B
JavaScript
|
const {defineConfig} = require('cypress');
|
||
|
|
||
|
module.exports = defineConfig({
|
||
|
component: {
|
||
|
devServer: {
|
||
|
framework: 'create-react-app',
|
||
|
bundler: 'webpack'
|
||
|
}
|
||
|
},
|
||
|
|
||
|
e2e: {
|
||
|
baseUrl: 'http://localhost:4000',
|
||
|
setupNodeEvents(on, config) {
|
||
|
// implement node event listeners here
|
||
|
}
|
||
|
}
|
||
|
});
|