Ghost/apps/comments-ui/cypress.config.js

18 lines
368 B
JavaScript
Raw Normal View History

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
}
}
});