@edools/bamboo-linter
Version:
Edools theme quality assurance tool
16 lines (13 loc) • 371 B
JavaScript
module.exports = function() {
global.expect = global.chai.expect;
beforeEach(function() {
this.sandbox = global.sinon.sandbox.create();
global.stub = this.sandbox.stub.bind(this.sandbox);
global.spy = this.sandbox.spy.bind(this.sandbox);
});
afterEach(function() {
delete global.stub;
delete global.spy;
this.sandbox.restore();
});
};