Files
wp-plugin-starter-template-…/cypress.config.js

11 lines
220 B
JavaScript

const { defineConfig } = require('cypress');
module.exports = defineConfig({
e2e: {
baseUrl: 'http://localhost:8888',
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});