Преглед изворни кода

Added empty stub to keep directory

master
Bryan Miller пре 5 година
родитељ
комит
adcafab80e
1 измењених фајлова са 13 додато и 0 уклоњено
  1. +13
    -0
      test/test-setup.spec.js

+ 13
- 0
test/test-setup.spec.js Прегледај датотеку

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


Loading…
Откажи
Сачувај