| 1 |
import { defineConfig } from 'cypress'; |
| 2 |
|
| 3 |
export default defineConfig({ |
| 4 |
e2e: { |
| 5 |
// We've imported your old cypress plugins here. |
| 6 |
// You may want to clean this up later by importing these. |
| 7 |
setupNodeEvents(on, config) { |
| 8 |
return require('./cypress/plugins/index.js')(on, config); |
| 9 |
}, |
| 10 |
defaultCommandTimeout: 10_000, |
| 11 |
}, |
| 12 |
}); |
| 13 |
|