Files

12 lines
196 B
JavaScript
Raw Permalink Normal View History

2026-07-09 10:03:32 -04:00
import './commands';
beforeEach(() => {
cy.intercept('GET', '/sockjs-node/**', (req) => {
req.destroy();
});
cy.intercept('GET', '/api/health', (req) => {
req.reply({});
});
});