it('should respond with 500 when unsupported strategy given', function (done) {
        chai.request("http://localhost:9999")
            .get('/stubs/unsupported-strategy')
            .then(res => {
                expect(res.status).toBe(500);