add cypress default files

This commit is contained in:
Yisroel Baum 2025-11-02 22:38:17 +02:00
parent 5057487b0f
commit ab7368a886
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
5 changed files with 61 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
},
},
});