upgrade cypress version

This commit is contained in:
Przemek Więch
2025-01-11 12:04:20 +01:00
parent 0f9a46a7b0
commit 9cadda886e
8 changed files with 650 additions and 1827 deletions

16
cypress.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import { defineConfig } from 'cypress'
export default defineConfig({
viewportWidth: 1280,
viewportHeight: 1024,
chromeWebSecurity: 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:3000/#',
supportFile: false,
},
})