mirror of
https://github.com/knadh/listmonk.git
synced 2025-03-02 01:05:25 +08:00
11 lines
199 B
JavaScript
11 lines
199 B
JavaScript
import './commands';
|
|
|
|
beforeEach(() => {
|
|
cy.intercept('GET', '/sockjs-node/**', (req) => {
|
|
req.destroy();
|
|
});
|
|
|
|
cy.intercept('GET', '/api/health/**', (req) => {
|
|
req.reply({});
|
|
});
|
|
});
|