vue3-realworld-example-app/cypress.config.ts

11 lines
237 B
TypeScript

import { defineConfig } from 'cypress'
export default defineConfig({
projectId: 'j7s91r',
e2e: {
specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
baseUrl: 'http://localhost:4173',
defaultCommandTimeout: 8000,
},
})