Add unite test

This commit is contained in:
2024-10-11 15:06:31 +02:00
parent c963758a06
commit 2d488a75eb
13 changed files with 1847 additions and 39 deletions

11
cypress.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
specPattern: 'cypress/integration/**/*.js',
baseUrl: 'http://localhost:8080',
},
});