Files
MangaStatus/cypress.config.ts
2023-09-21 18:49:17 +02:00

9 lines
186 B
TypeScript

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