Add health-checking endpoint on '/health' that always returns 200 (#2992)

* Add health-checker endpoint on '/health' that always returns 200OK

* Refactor health handler, add tests

* Refactor health test
This commit is contained in:
Kirill Kravinsky
2016-11-02 20:33:59 -04:00
committed by Florent Vilmart
parent b347bff641
commit 908c48098a
3 changed files with 13 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ describe("public API without publicServerURL", () => {
beforeEach(done => {
reconfigureServer({ appName: 'unused' })
.then(done, fail);
})
});
it("should get 404 on verify_email", (done) => {
request('http://localhost:8378/1/apps/test/verify_email', (err, httpResponse, body) => {
expect(httpResponse.statusCode).toBe(404);