CFE-8 Setting up required cypress

This commit is contained in:
AmirHossein Mahmoodi
2023-09-23 11:28:10 +03:30
parent 26b8fdbaee
commit bf7e3211cb
6 changed files with 106 additions and 1 deletions

16
cypress.config.js Normal file
View File

@@ -0,0 +1,16 @@
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
component: {
devServer: {
framework: "next",
bundler: "webpack",
},
},
});