-
Notifications
You must be signed in to change notification settings - Fork 4
Callback on requests
skwasjer edited this page Jan 17, 2020
·
2 revisions
When a callback is configured, it will be called before the request handler is called and a response is produced and returned. This can be useful to track custom state or manipulate the response further.
mockHttp
.When(...)
.Callback(request => { /* Do something */ })
.Respond(...)