const path = require('path'); const { defineConfig } = require('cypress'); module.exports = defineConfig({ // for e2e testing e2e: { supportFile: false, specPattern: path.resolve(__dirname, 'test/**/*.cy.js'), } });