Files
habitica/test/spec/mocks/sandbox.js
2015-06-21 20:02:48 -05:00

10 lines
127 B
JavaScript

var sandbox;
beforeEach(function() {
sandbox = sinon.sandbox.create();
});
afterEach(function() {
sandbox.restore();
});