Browse Source

Added empty stub to keep directory

master
Bryan Miller 5 years ago
parent
commit
adcafab80e
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      test/test-setup.spec.js

+ 13
- 0
test/test-setup.spec.js View File


// NOTE: Idea for this file comes from https://blog.risingstack.com/node-hero-node-js-unit-testing-tutorial/
const sinon = require('sinon');
const chai = require('chai');

beforeEach(function(){
this.sandbox = sinon.createSandbox();
})

afterEach(function(){
this.sandbox.restore();
});


Loading…
Cancel
Save