mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-01 13:02:07 -05:00
6 lines
134 B
TypeScript
6 lines
134 B
TypeScript
|
export const interceptTutorials = () => {
|
||
|
cy.intercept('POST', '/tutorial/**', {
|
||
|
statusCode: 204,
|
||
|
}).as('completeTutorial')
|
||
|
}
|