test: initialize cypress e2e testing library
All checks were successful
container-scan / Container Scan (pull_request) Successful in 3m9s
docker-build / docker (pull_request) Successful in 3m30s

This commit is contained in:
Dominik 2025-05-08 18:23:24 +02:00
parent 749c747b3a
commit 093b15c881
Signed by: dominik
GPG key ID: 06A4003FC5049644
8 changed files with 1331 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',
},
},
});