mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-30 12:24:25 +02:00
6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
export const interceptEvents = () => {
|
|
cy.intercept('POST', '/event/*', {
|
|
statusCode: 204,
|
|
}).as('createEvent')
|
|
}
|