Browse Source

Mock fix

master
Lloyd Brookes 9 years ago
parent
commit
7d407fddc2
  1. 13
      lib/middleware.js

13
lib/middleware.js

@ -101,16 +101,17 @@ function mockResponses (route, targets) {
}
if (target) {
let mockedResponse = target.response
debug('target response: %j', target.response)
if (t.isFunction(target.response)) {
const pathMatches = ctx.url.match(pathRe).slice(1)
const ctor = target.response.bind(null, ...[ctx].concat(pathMatches))
mockedResponse = new ctor()
}
debug('target response: %j', mockedResponse)
Object.assign(ctx.response, mockedResponse)
target.response.apply(null, [ctx].concat(pathMatches))
} else {
Object.assign(ctx.response, target.response)
}
}
} else {
return next()
}
}
}
Loading…
Cancel
Save