소스 검색

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…
취소
저장