Add Cypress tests: install + create account

This commit is contained in:
slawkens
2023-05-26 08:49:04 +02:00
parent 0d0e5812dd
commit 269ae323e0
8 changed files with 2111 additions and 0 deletions

9
cypress.config.js Normal file
View File

@@ -0,0 +1,9 @@
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});