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

5 lines
134 B
TypeScript

export const interceptTutorials = () => {
cy.intercept('POST', '/tutorial/**', {
statusCode: 204,
}).as('completeTutorial')
}