sunrise-cms/cypress/e2e/xx-other/keepAlive.cy.js

9 lines
195 B
JavaScript

describe('Keep Alive', () => {
it('Returns true', () => {
cy.request('/keepAlive').then((response) => {
expect(response.body).eq(true);
});
});
});
export {};