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