Added and configured cypress

This commit is contained in:
2022-09-30 17:28:13 +02:00
parent c3d610cbf7
commit bab838ac35
10 changed files with 1235 additions and 8 deletions

16
client/cypress.config.ts Normal file
View File

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