mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
13 lines
259 B
JavaScript
13 lines
259 B
JavaScript
|
const { defineConfig } = require("cypress");
|
||
|
|
||
|
|
||
|
module.exports = defineConfig({
|
||
|
e2e: {
|
||
|
baseUrl: 'http://localhost:5678',
|
||
|
video: false,
|
||
|
screenshotOnRunFailure: false,
|
||
|
experimentalSessionAndOrigin: true,
|
||
|
experimentalInteractiveRunEvents: true,
|
||
|
}
|
||
|
});
|