Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Created November 20, 2024 21:52
Show Gist options
  • Save jrichardsz/3b6dbd38791a9fc0f6437eff78a041d1 to your computer and use it in GitHub Desktop.
Save jrichardsz/3b6dbd38791a9fc0f6437eff78a041d1 to your computer and use it in GitHub Desktop.
nodejs unit test sinon

stub field

This works for me with Sinon.JS v4.1.2:

myObject = {hello: 'hello'}
sandbox = sinon.createSandbox()
sandbox.stub(myObject, 'hello').value('Sinon')
myObject.hello // "Sinon"
sandbox.restore()
myObject.hello // "hello"

https://stackoverflow.com/questions/47424195/sinon-not-stubbing-property-value-of-object

stub require

// in your testfile
var innerLib  = require('./path/to/innerLib');
var underTest = require('./path/to/underTest');
var sinon     = require('sinon');

describe("underTest", function() {
  it("does something", function() {
    sinon.stub(innerLib, 'toCrazyCrap').callsFake(function() {
      // whatever you would like innerLib.toCrazyCrap to do under test
    });

    underTest();

    sinon.assert.calledOnce(innerLib.toCrazyCrap); // sinon assertion

    innerLib.toCrazyCrap.restore(); // restore original functionality
  });
});

https://stackoverflow.com/questions/5747035/how-to-unit-test-a-node-js-module-that-requires-other-modules-and-how-to-mock-th

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment