mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
642c06f6ba
* Add Travis postgresql setup. * Replace "db mocks" with a before hook that creates the same data through the HTTP API. * Reset DB and re-create all fixtures for each test. We'll need something better here. * CAVEAT: no concept of a dev vs test database. Running tests will clear data from the currently configured database.
15 lines
385 B
JavaScript
15 lines
385 B
JavaScript
var specHelper = require('./specHelper');
|
|
var request = specHelper.request;
|
|
|
|
describe('The routes', function () {
|
|
|
|
describe('healthcheck', function () {
|
|
it('returns health good', function (done) {
|
|
request.get('/health')
|
|
.expect('Content-Type', /json/)
|
|
.expect(200)
|
|
.expect('{"health":"GOOD"}', done);
|
|
});
|
|
});
|
|
|
|
}); |