blakerain.com/cypress.config.js
2023-10-27 10:59:47 +01:00

11 lines
220 B
JavaScript

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