UNPKG

core-resource-app-test

Version:

App that contains assets and scripts for the core apps

14 lines (11 loc) 346 B
const global = window; beforeEach(function beforeEachSetup() { this.sandbox = global.sinon.sandbox.create(); global.stub = this.sandbox.stub.bind(this.sandbox); global.spy = this.sandbox.spy.bind(this.sandbox); }); afterEach(function afterEachSetup() { delete global.stub; delete global.spy; this.sandbox.restore(); });