9 lines
182 B
JavaScript
9 lines
182 B
JavaScript
const {defineConfig} = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: 'https://myep-next-booking.ddev.site',
|
|
supportFile: false,
|
|
},
|
|
});
|