mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-12 11:40:34 +05:00
16 lines
440 B
TypeScript
16 lines
440 B
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
viewportWidth: 1280,
|
|
viewportHeight: 720,
|
|
e2e: {
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
setupNodeEvents(on, config) {
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
return require('./cypress/plugins/index.js')(on, config)
|
|
},
|
|
baseUrl: 'http://localhost:3000',
|
|
},
|
|
})
|