Files
xyflow/cypress.config.js
2022-07-27 11:35:52 +02:00

11 lines
202 B
JavaScript

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