mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-27 17:00:06 +02:00
5 lines
122 B
TypeScript
5 lines
122 B
TypeScript
export const interceptEvents = () => {
|
|
cy.intercept('POST', '/event/*', {
|
|
statusCode: 204,
|
|
}).as('createEvent')
|
|
}
|