ctimmerm / axios-mock-adapter

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

networkErrorOnce cannot be chained #213

Closed cjancsar closed 4 years ago

cjancsar commented 5 years ago

Presently, networkErrorOnce returns undefined so it cannot be chained to simulate a connection issue that becomes resolved.

Can't do:

mock.
    onGet('/users.').networkErrorOnce()
    onGet('/users.').replyOnce(.................)