Anudeep
Anudeep
@olcortesb Thank you for taking time to fix this issue. The easiest resolution would be making the [strict](https://github.com/pactumjs/pactum/blob/master/src/models/expect.js#L358) comparison configurable while validating json snapshots. ```js const strict = false; const...
This is fixed https://github.com/pactumjs/pactum-matchers/pull/26
@Rajaneeshkumar please help raise a PR with the suggested changes.
closed in https://github.com/pactumjs/pactum/pull/315
Pactum doesn't read environment variables from `.env` file. [dotenv](https://www.npmjs.com/package/dotenv) will help if we place it at the start of test execution.
Thank you for pointing it out. We will update the docs.
There is a duplicate function... ```js Then(/^I expect response should have a body$/, function (body) { spec.response().should.have.body(body); }); ```