Hi all, I am verifying a pact on pactflow and it s...
# pactflow
n
Hi all, I am verifying a pact on pactflow and it shows that it is verified in terminal but once I go to pactflow it still shows unverified. Is there a command I need to run to get it to ber verified in pactlfow. I am simply just running yarn test for now.
This is my code:
m
You'll need to publish the verification results. There is a property you need to enable in CI only (usually) to do that
🙌 1
n
Yep just got it thanks!
👍 1
I just needed to add: publishVerificationResult: true,
👍 1
👍🏼 1
t
Also, it's good practice to get your token from an environment variable or encrypted secret instead of pasting in the file directly
☝️ 1
n
Yep I will put it in an environment var, thank you!