would you know what is the reason for that error m...
# general
g
would you know what is the reason for that error message below:
Copy code
Test failed for the following reasons:

      Mock server failed with the following mismatches:

        0) The following request was expected but not received:
t
It means you told pact to expect that request, but it didn't receive it.
Usually one of: 1) You're not sending that request 2) You are sending that request, but not to Pact
g
got it, i did exactly the same as here but using my own endpoint! is there any link or steps to check those points that you said?
t
I'm not sure what you're asking. Check that you're sending that request, and check that you're sending it to the pact mock server
g
just asking how to check if i'm sending the request and also sending to pact
t
Read your code, and if it looks right, then run it through a debugger
👍 1
g
@Timothy Jones how can i run through a debugger?