Giter Site home page Giter Site logo

Comments (4)

vjwilson avatar vjwilson commented on April 28, 2024

@canoqb10 ,

The default time moxios waits before it returns a mock response is 100ms, and you have to override it on each individual call. (There's an open issue about this being too long, #16 )

You can add a small number at the end of the parameter list for each moxios method call to reduce this delay.

E.g.,

moxios.stubRequest(path, {
  status: 404,
  response: {
    message:'BAD_REQUEST'
  }
}, 5);

where that last 5 changes the delay to 5ms.

Hope this helps.

from moxios.

anilanar avatar anilanar commented on April 28, 2024

Kamino cloned this issue to anilanar/moxios

from moxios.

jwallet avatar jwallet commented on April 28, 2024

I had the same issue, this is the first result when googling this issue. So I leave here my solution.
If you have multiple moxios like this

moxios.wait(() => {
  const requestInternet = moxios.requests.at(0);
  requestInternet.respondWith({
    status: 200,
    response: true
  });
  done(); //add the done() callback after the first request to know what's really happening
  moxios.wait(() => {
    const requestTransaction = moxios.requests.at(1);
    requestTransaction.respondWith({
      status: 200,
      response: transactionResult
    });
    done();
  });
});

It won't be able to show you the actual error because it fails on the first call and it's waiting for the done() callback to end. so if you add a temporary done() after the first call, you will see what actually fails... in my case my action has a json stringified as a parameter but i gave a actual json in my test, so it was failing on JSON.parse(object),

from moxios.

AdrianHL avatar AdrianHL commented on April 28, 2024

I'm trying to use moxios.wait within another moxios.wait and I'm getting

Error: done() called multiple times

from moxios.

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.