2016-04-24 22:41:37 +02:00
|
|
|
'use strict';
|
2016-10-26 10:43:11 +02:00
|
|
|
|
2017-06-28 10:20:22 +02:00
|
|
|
const { test } = require('ava');
|
2016-11-13 20:33:23 +01:00
|
|
|
const { setupApp } = require('./helpers/test-helper');
|
2016-11-10 21:15:16 +01:00
|
|
|
|
2017-06-28 10:20:22 +02:00
|
|
|
test('returns health good', async t => {
|
|
|
|
t.plan(0);
|
2016-11-13 15:41:35 +01:00
|
|
|
const { request, destroy } = await setupApp('health');
|
2017-06-28 10:20:22 +02:00
|
|
|
return request
|
|
|
|
.get('/health')
|
2016-11-13 15:41:35 +01:00
|
|
|
.expect('Content-Type', /json/)
|
|
|
|
.expect(200)
|
|
|
|
.expect('{"health":"GOOD"}')
|
|
|
|
.then(destroy);
|
2016-04-24 22:41:37 +02:00
|
|
|
});
|