Add Cypress config and support files

This commit is contained in:
mikiher 2024-04-15 23:57:21 +03:00
parent 303ef6b7c5
commit f597798839
5 changed files with 78 additions and 0 deletions

10
client/cypress.config.js Normal file
View file

@ -0,0 +1,10 @@
const { defineConfig } = require("cypress");
module.exports = defineConfig({
component: {
devServer: {
framework: "nuxt",
bundler: "webpack",
},
},
});