GithubHelp home page GithubHelp logo

Comments (4)

ctimmerm avatar ctimmerm commented on May 11, 2024 3

All that axios-mock-adapter does is setting an adapter for the axios instance that you pass to it.
There's no built in support for toggling the mock adapter on and off, but it's pretty easy to achieve anyway:

var mock = new MockAdapter(axios);

// Save a reference to the mock adapter so that we can later reuse it
var mockAdapter = axios.defaults.adapter;

// Removing mocking behavior
mock.restore();

// Add mocking behavior again
axios.defaults.adapter = mockAdapter;

from axios-mock-adapter.

 avatar commented on May 11, 2024 2

This would be as trivial to do if there is an option or if there's not:

if (process.env.NODE_ENV === 'development') {
  // Mocking code here
}

If it was as an option it'd be basically the same, let's say the option was called active:

const mock = new MockAdapter(axios, {
  active: process.env.NODE_ENV === 'development'
});

So IMHO it doesn't make sense to implement it.

from axios-mock-adapter.

xiaoyouyu avatar xiaoyouyu commented on May 11, 2024 2

All that axios-mock-adapter does is setting an adapter for the axios instance that you pass to it.
There's no built in support for toggling the mock adapter on and off, but it's pretty easy to achieve anyway:

var mock = new MockAdapter(axios);

// Save a reference to the mock adapter so that we can later reuse it
var mockAdapter = axios.defaults.adapter;

// Removing mocking behavior
mock.restore();

// Add mocking behavior again
axios.defaults.adapter = mockAdapter;

very good

from axios-mock-adapter.

exnihilo-creatio avatar exnihilo-creatio commented on May 11, 2024

Indeed, it is easy to achieve, I just thought maybe having a built in support might be helpful, since its not a lot of code and won't have any effect on existing code. It's a nice to have kinda feature.

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.