mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
import {requester} from '../../../helpers/api-integration/v2';
|
|
|
|
describe('Status', () => {
|
|
it('returns a status of up when server is up', async () => {
|
|
let api = requester();
|
|
|
|
await expect(api.get('/status')).to.eventually.eql({status: 'up'});
|
|
});
|
|
});
|