Skip to content

Instantly share code, notes, and snippets.

View datvong-wm's full-sized avatar

Dat Vong datvong-wm

View GitHub Profile
@datvong-wm
datvong-wm / sinon.md
Last active August 19, 2018 05:12
Sinon patterns and How-To

Here are some examples of testing NodeJS with Sinon.

In these examples, I am using sinon@4.5.0 with node v6.14.3

  • Use a sandbox because it restores all stubs, spies, timers, etc.
beforeEach(() => {
   sandbox = sinon.sandbox.create();
 });