it('should response to HEAD short notation with default status', function (done) {
        chai.request("http://localhost:9999")
            .head('/stubs/healthcheck')
            .then(res => {
                expect(res.status).toBe(200);