mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-01 04:53:03 +00:00
5 lines
122 B
TypeScript
5 lines
122 B
TypeScript
export const interceptEvents = () => {
|
|
cy.intercept('POST', '/event/*', {
|
|
statusCode: 204,
|
|
}).as('createEvent')
|
|
}
|