pactum

REST API Testing Tool for all levels in a Test Pyramid

MIT License

Downloads
561.2K
Stars
501
Committers
22

Bot releases are visible (Hide)

pactum - v3.0.21

Published by ASaiAnudeep about 3 years ago

Bug Fixes

  • Fixed bug with background interactions.

Enhancements

  • added new matchers - release docs.
  • added clone utility method.
pactum - v3.0.20

Published by leelaprasadv about 3 years ago

Enhancements

  • Added wait handlers and dynamic waits. See more details here.
  • Support for background interactions
  • retry now supports retry on list of status codes. See more details on retry here.
    // Example
    .retry({
      delay: 1,
      count: 1,
      status: [502, 504]
    })
    
    
pactum - v3.0.19

Published by ASaiAnudeep about 3 years ago

Enhancements

  • added expectJsonLength assertion method.
  • mock server now stops on receiving SIGTERM signal which will be useful for docker setup.