Skip to content
Advertisement

How do I stub a chain of methods in Sinon?

I know how to use stub to replace one function.

JavaScript

But now I have a line in my function I want to test that I need to stub that looks like this

JavaScript

So there is a chain of function here and I’m unsure what I need to do. How do I stub “find” to return something that I can use to stub “fetch”?

Advertisement

Answer

Try this:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement