0.8.0 / 13 April 2020
Features:
-
Added a TypeScript Declaration File so you can use this plugin in TypeScript projects without import type errors #61. See usage guide
-
Changed some negated assertions to pass instead of fail #67
expect(res).to.not.satisfyApiSpecused to mean "expectresto match but not satisfy a response defined in your API spec".
nowexpect(res).to.not.satisfyApiSpecmeans "expectresto neither match nor satisfy a response defined in your API spec".
So ifresmatches no responses in your API spec, thenexpect(res).to.not.satisfyApiSpecpasses. -
Much more useful and consistent assertion failure messages #67, see diff:

