mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
16 lines
384 B
JavaScript
16 lines
384 B
JavaScript
'use strict';
|
|
|
|
const test = require('ava');
|
|
const { setupApp } = require('./helpers/test-helper');
|
|
|
|
test('returns health good', async t => {
|
|
t.plan(0);
|
|
const { request, destroy } = await setupApp('health');
|
|
return request
|
|
.get('/health')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200)
|
|
.expect('{"health":"GOOD"}')
|
|
.then(destroy);
|
|
});
|