Leela Prasad
Leela Prasad
Hey @rkanil, PactumJS's built-in lightweight http client is like any other http client (axios, fetch, postman etc). If you are able to make a call with axios you should be...
@rkanil , The reason it works with above axios code is because you are disabling tls validations. Which is not recommended for security reasons, instead you should try getting the...
Please check https://github.com/pactumjs/pactum-cucumber-boilerplate https://pactumjs.github.io/introduction/test-style.html#test-style for sample BDD Style tests. Just add `spec.withCore(...)` in you step definitions appropriately based on your test setup.
@Rajaneeshkumar depending on the retry count, the requested change might spam the console output. Instead of changing it into info log just for this usecase, have you tried setting the...
Hi @madvi30477, There could be multiple reasons for Internal server error. Typically Internal server error HTTP 500 is due to unhandled/unexpected server side issue while fulfilling a request. Also it...
@madvi30477 It seems you are trying to run the mock server on port `3001` and trying to hit the mock server on `443` port with a POST call, which will...
I see couple of issues with above setup 1. Mock server in pactum is a local server (to simulate external API interactions for service under test - SUT in a...
@akhil7000 thanks for restarting the conversation, we have been thinking about implementing a `Redaction` logic for some time now. I had to pause it because of other priorities. We are...