it('should response from random file if exist otherwise 500 if file is not exist', function (done) {
        chai.request("http://localhost:9999")
            .get('/stubs/random')
            .then(res => {
                expect(res.status).toBe(200);