MOCKING ON, but letting this fall through
Mocking seems to work for most of my calls but some are saying MOCKING ON, but letting this fall through. Why is that? Seems to happen to calls that it does a lot of to the same endpoint but different querystring.
The endpoints are recorded and saved as json.
Yeah, this library assumes that every run will call the exact same APIs with the same query strings. If that's not the case (for example, you're passing the current timestamp as a query parameter), it won't work.
I haven't worked on this in a little while, but when I get time I may introduce an option to provide a matching function.
Ah okay, I was under the assumption that endpoints would be unique including their query string.
Actually it's not really a problem if it would just return the same response regardless of query string but it seems to not mock those calls.