bootstrap-table
Version:
An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)
15 lines (13 loc) • 363 B
JavaScript
import { defineConfig } from 'cypress'
import plugins from './cypress/plugins/index.js'
export default defineConfig({
video: false,
screenshot: 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 plugins(on, config)
},
},
})