Skip to content Skip to sidebar Skip to footer
Showing posts with the label Sinon

Sinon - Stubbing Function With Callback - Causing Test Method To Timeout

I have a method on a express route that looks like this: exports.register_post = function(req, res)… Read more Sinon - Stubbing Function With Callback - Causing Test Method To Timeout

Sinon: How To Stub An Entire Class, Rather Than Just A Method

I have a class under test that creates instances of another class. I want to stub out the entirety… Read more Sinon: How To Stub An Entire Class, Rather Than Just A Method

Has Been Called With Object Assertion

Function I'm spying on, receives object as an argument. I need to assert that the function been… Read more Has Been Called With Object Assertion

Stubbing Window.location.href With Sinon

I am trying to test some client-side code and for that I need to stub the value of window.location.… Read more Stubbing Window.location.href With Sinon

How To Mock Pg Pool With Sinon

In a previous project I mocked the mysql library with Sinon. I did this like so: X.js: const con =… Read more How To Mock Pg Pool With Sinon