hi ,im a new user to pact ,i am using Pact with me...
# pact-js
y
hi ,im a new user to pact ,i am using Pact with message queues - already able to write down the consumer (that generates the contract) but I was not able to verify it here by the contract consumer (the producer of the event) - did i misunderstood something? (Expecting the contract to be verified)
t
I think you need to set
publishVerificationResult
to
true
. It’s false by default
❤️ 1
☝️ 1
Copy code
const p = new MessageProviderPact({
     publishVerificationResult: true,
....etc
});
y
Thanks 🙂
🙌 2