mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
14 lines
283 B
JavaScript
14 lines
283 B
JavaScript
const { defineConfig } = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
video: false,
|
|
|
|
e2e: {
|
|
experimentalRunAllSpecs: true,
|
|
setupNodeEvents(on, config) {
|
|
return require('../plugins/index.js')(on, config)
|
|
},
|
|
baseUrl: 'http://127.0.0.1:5000',
|
|
},
|
|
});
|