react-archer
Version:
Draw arrows between DOM elements in React
15 lines (13 loc) • 394 B
text/typescript
import { defineConfig } from 'cypress';
export default defineConfig({
video: false,
watchForFileChanges: false,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./cypress/plugins/index.js')(on, config);
},
baseUrl: 'http://localhost:8080',
},
});