The VerifyStubs methods in the api and run packages just list the number of unmatched stubs. It would be a better UX if they actually listed the match strings. Something like:
found 2 unmatched stub(s):
- MatchPost: /api/v1/users
- MatchGet: /api/v1/users/123
// or...
found 2 unmatched stub(s):
- MatchString: /bin/echo foo
- MatchString: /bin/echo bar
The
VerifyStubsmethods in theapiandrunpackages just list the number of unmatched stubs. It would be a better UX if they actually listed the match strings. Something like: