it('should response with 500 when file is not found', function (done) {
        chai.request("http://localhost:9999")
            .get('/stubs/skipProcessing/invalid')
            .then(res => {
                expect(res.status).toBe(500);