listmonk/frontend/cypress/support/e2e.js

12 lines
199 B
JavaScript
Raw Normal View History

2021-02-20 16:19:14 +08:00
import './commands';
beforeEach(() => {
2023-12-23 17:14:50 +08:00
cy.intercept('GET', '/sockjs-node/**', (req) => {
req.destroy();
2021-02-20 16:19:14 +08:00
});
2023-12-23 17:14:50 +08:00
cy.intercept('GET', '/api/health/**', (req) => {
req.reply({});
});
2021-02-20 16:19:14 +08:00
});