test: initialize cypress e2e testing library

This commit is contained in:
Dominik 2025-05-08 18:23:24 +02:00
parent 749c747b3a
commit ece3a3fd4c
Signed by: dominik
GPG key ID: 06A4003FC5049644
8 changed files with 1330 additions and 72 deletions

16
cypress.config.ts Normal file
View file

@ -0,0 +1,16 @@
import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
component: {
devServer: {
framework: 'next',
bundler: 'webpack',
},
},
});