Git Product home page Git Product logo

Comments (3)

manju-reddys avatar manju-reddys commented on May 26, 2024

You can spyOn the get, the get method is exposed on scope.

here is an example

const scope = nock('https://google.com');

const getSpy = jest.spyOn(scope, 'get');

......
expect(getSpy).toHaveBeenCalledTimes(4);

from nock.

mastermatt avatar mastermatt commented on May 26, 2024

@Torniojaws I'm not sure why you'd ever want to spy on Nock itself in a test.

const spy = jest.spyOn(nock, 'get');

Is going to spy on your test when you call nock(someUrl).get('/thing')..., now when Axios is attempting to fire HTTP requests in your code.

You are on the right track with your alternative, that's how I've tested axios-retry in the past. However, you can use the .times method to clean it up a bit.

nock(someUrl)
  .get('/thing')
  .times(3)
  .reply(500, 'Internal server error')
  .get('/thing')
  .reply(500, 'Max retries (3) reached');

await expect(getThing()).resolves.toEqual({ data: 'Max retries (3) reached', statusCode: 500 });

from nock.

mikicho avatar mikicho commented on May 26, 2024

I am closing this one.
Feel free to reopen if needed.

from nock.

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.