wisemapping-frontend/packages/web2d/cypress.config.js

14 lines
370 B
JavaScript
Raw Normal View History

2022-10-30 23:16:09 -07:00
const { defineConfig } = require('cypress')
module.exports = defineConfig({
video: false,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
2023-01-30 04:10:57 +00:00
return require('./cypress/plugins/index.js')(on, config);
2022-10-30 23:16:09 -07:00
},
2023-01-30 04:10:57 +00:00
baseUrl: 'http://localhost:6006',
2022-10-30 23:16:09 -07:00
},
2023-01-30 04:10:57 +00:00
});