Files
cnd2025-hw3/frontend/cypress.config.ts
2024-03-26 00:55:13 +08:00

11 lines
209 B
TypeScript

import { defineConfig } from 'cypress'
export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
baseUrl: 'http://localhost:5173'
}
})