const { defineConfig } = require("cypress"); module.exports = defineConfig({ e2e: { // baseUrl: "http://localhost:3000", viewportWidth: 1280, viewportHeight: 720, video: true, screenshotOnRunFailure: true, defaultCommandTimeout: 10000, requestTimeout: 10000, responseTimeout: 10000, specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}", setupNodeEvents(on, config) { // implement node event listeners here }, }, });