hello, did someone encounter following error while...
# pact-js
b
hello, did someone encounter following error while writing consumer testss ? Property 'executeTest' does not exist on type 'PactV4'.ts(2339)
m
execute test is a method on the builder only available after certain functions are called. You’re not assigning the response to
willRespondWith
to
provider
so it’s not available yet. Either do that, or chain the method at the end of
willRespondWith
1
b
thank you
👍 1