cypress/cypress.config.js
2024-07-03 10:35:45 +02:00

10 lines
201 B
JavaScript

const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
baseUrl: 'http://localhost:8080'
},
testIsolation: false
},
});