mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
78119c9f22
* ⚡ Consolidate Prettier ignore patterns * ⚡ Let Prettier select file types to format * 🎨 Apply formatting
12 lines
258 B
JavaScript
12 lines
258 B
JavaScript
const { defineConfig } = require('cypress');
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:5678',
|
|
video: false,
|
|
screenshotOnRunFailure: true,
|
|
experimentalSessionAndOrigin: true,
|
|
experimentalInteractiveRunEvents: true,
|
|
},
|
|
});
|