Code Monkey home page Code Monkey logo

Comments (6)

cross311 avatar cross311 commented on May 13, 2024 5

Can you also publish this update in the npm package?

from axios-mock-adapter.

ctimmerm avatar ctimmerm commented on May 13, 2024 1

There's no built in way to do so currently. There are two ways a request can fail (other than the server returning an error code); by there being either a low level network error or if the request simply timed out.

To emulate a network error, you can do the following for now:

mock.onGet('/foo', function(config) {
  var error = new Error('Network Error');
  error.config = config;
  return Promise.reject(error);
});

I could add specific methods for these so you could do something like:

mock.onGet('/foo').networkError();
mock.onPost('/bar').timeout();

from axios-mock-adapter.

peterox avatar peterox commented on May 13, 2024

I also think this would be great so I've just created a pull request to add it.

from axios-mock-adapter.

davidonlaptop avatar davidonlaptop commented on May 13, 2024

yes, I would like to use this feature too!

from axios-mock-adapter.

mpourismaiel avatar mpourismaiel commented on May 13, 2024

Isn't this available in the npm package? I get typeError when trying to access networkError on onPost.

TypeError: mockAxios.onPost(...).networkError is not a function

And the solution @ctimmerm mentioned doesn't seem to work. I get 404 instead of a network error.

from axios-mock-adapter.

EthanLin-TWer avatar EthanLin-TWer commented on May 13, 2024

@mpourismaiel the networkError() API is working on my end, so just a quick guess could this because of the package version? I'm working with ^1.9.0 version of axios-mocks-adapter and it's working for me. Can you post your library version so that we can have a look if it's the problem?

from axios-mock-adapter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.