9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
const { defineConfig } = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: "http://localhost:3000",
|
|
},
|
|
chromeWebSecurity: false,
|
|
"video": false
|
|
});
|