UNPKG

149 BJavaScriptView Raw
1import sinon from 'sinon';
2
3beforeEach(function () {
4 this.sinon = sinon.sandbox.create();
5});
6
7afterEach(function () {
8 this.sinon.restore();
9});