Bladeren bron

Added empty stub to keep directory

master
Bryan Miller 5 jaren geleden
bovenliggende
commit
adcafab80e
1 gewijzigde bestanden met toevoegingen van 13 en 0 verwijderingen
  1. +13
    -0
      test/test-setup.spec.js

+ 13
- 0
test/test-setup.spec.js Bestand weergeven

@@ -0,0 +1,13 @@

// 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();
});


Laden…
Annuleren
Opslaan