0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00
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
}
}
});