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

11 lines
251 B
TypeScript

/* eslint-disable promise/always-return */
/* eslint-disable promise/catch-or-return */
describe('Keep Alive', () => {
it('Returns true', () => {
cy.request('/keepAlive').then((response) => {
expect(response.body).eq(true)
})
})
})