1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/test/e2e/health.e2e.test.js
ivaosthu f5e9ca3bbe Implement support for logger provider.
This allows the users of 'unleash-server' to programatically
change the logger implemnentation. #175
2020-02-20 08:33:33 +01:00

16 lines
388 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);
});