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