listmonk/frontend/cypress/support/e2e.js
2023-12-23 14:44:50 +05:30

11 lines
199 B
JavaScript

import './commands';
beforeEach(() => {
cy.intercept('GET', '/sockjs-node/**', (req) => {
req.destroy();
});
cy.intercept('GET', '/api/health/**', (req) => {
req.reply({});
});
});