mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
11 lines
270 B
JavaScript
11 lines
270 B
JavaScript
import {requester} from '../../../helpers/api-integration.helper';
|
|
|
|
describe('Status', () => {
|
|
|
|
it('returns a status of up when server is up', () => {
|
|
let api = requester();
|
|
return expect(api.get('/status'))
|
|
.to.eventually.eql({status: 'up'});
|
|
});
|
|
});
|