ctimmerm / axios-mock-adapter

Axios adapter that allows to easily mock requests
MIT License
3.47k stars 245 forks source link

fix(replyWithDelay): add replyWithDelay function #383

Closed seriouslag closed 3 months ago

seriouslag commented 7 months ago

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

marcbachmann commented 3 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.