expect(method, url, [data], [headers], [keys]);
Creates a new request expectation.
Parameters
Param | Type | Details |
---|---|---|
method | string | HTTP method. |
url | string RegExp function(string) | HTTP url or function that receives a url and returns true if the url matches the current definition. |
data (optional) | string RegExp function(string) Object | HTTP request body or function that receives data string and returns true if the data is as expected, or Object if request body is in JSON format. |
headers (optional) | Object function(Object) | HTTP headers or function that receives http header object and returns true if the headers match the current expectation. |
keys (optional) | Array | Array of keys to assign to regex matches in request url described above. |
Returns
requestHandler |
Returns an object with
|
Please login to continue.