ctimmerm / axios-mock-adapter

Axios adapter that allows to easily mock requests
MIT License
3.45k stars 244 forks source link

fix(replyWithDelay): add replyWithDelay function #383

Closed seriouslag closed 2 months ago

seriouslag commented 5 months ago

This PR exposes a method to delay the mocks response, adds types, and tests.

marcbachmann commented 2 months ago

mock.onGet().withDelayInMs(1000).reply(status, data) already supports functionality for that (on v2.0.0 it's properly chainable). There's no need to expose the internal function.