Files
xyflow/cypress.config.js
2022-07-26 18:20:52 +02:00

12 lines
226 B
JavaScript

const { defineConfig } = require('cypress');
module.exports = defineConfig({
e2e: {
baseUrl: 'http://localhost:3000',
viewportWidth: 1280,
viewportHeight: 720,
video: false,
supportFile: false,
},
});