cypress.config.js 197 B

12345678
  1. const { defineConfig } = require("cypress");
  2. module.exports = defineConfig({
  3. e2e: {
  4. specPattern: "cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}",
  5. baseUrl: "http://localhost:4173",
  6. },
  7. });