latex-ub/services/web/cypress/support/shared/commands/events.ts
2025-05-05 12:24:05 +00:00

5 lines
122 B
TypeScript

export const interceptEvents = () => {
cy.intercept('POST', '/event/*', {
statusCode: 204,
}).as('createEvent')
}