UNPKG

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