Files
EagleCast/frontend/cypress/support/e2e.js
T
h202-wq 66d9a033c9
publish-github-pages / deploy (push) Has been cancelled
EagleCast
2026-07-09 10:03:32 -04:00

12 lines
196 B
JavaScript

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