mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-26 21:24:08 +00:00
13 lines
263 B
JavaScript
13 lines
263 B
JavaScript
|
|
import {
|
||
|
|
requester,
|
||
|
|
} from '../../../../helpers/api-v3-integration.helper';
|
||
|
|
|
||
|
|
describe('GET /status', () => {
|
||
|
|
it('returns status: up', async () => {
|
||
|
|
let res = await requester().get('/status');
|
||
|
|
expect(res).to.eql({
|
||
|
|
status: 'up',
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|