Files
EagleCast/frontend/cypress/support/e2e.js
T

12 lines
196 B
JavaScript
Raw 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({});
});
});