hub-site/cypress.config.ts

9 lines
188 B
TypeScript
Raw Normal View History

2024-11-15 09:13:20 -08:00
import { defineConfig } from 'cypress'
export default defineConfig({
e2e: {
specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}',
baseUrl: 'http://localhost:4173',
},
})