This commit is contained in:
2024-06-28 13:32:22 +02:00
parent 18cad78969
commit bfbb5d64de
34 changed files with 8132 additions and 739 deletions

15
cypress.config.cjs Normal file
View File

@@ -0,0 +1,15 @@
/* eslint-disable no-undef */
/* eslint-disable @typescript-eslint/no-var-requires */
const { defineConfig } = require( 'cypress' );
module.exports = defineConfig( {
'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.cjs' )( on, config );
},
'experimentalRunAllSpecs': true,
},
} );