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