| This package has been deprecated: Please use ember-sinon-qunit. Read this post to learn more. | 
|---|
This addon adds automatic sandboxing of sinon to your QUnit tests. This ensures that sinon is correctly isolated and doesn't leak state between test executions.
Run:
ember install ember-sinon-sandbox
The ember-sinon-sandbox addon supports two different API versions:
- The classic API, which automatically wires up sandbox creation and restoration to 
QUnit.testStartandQUnit.testDonerespectively - The new QUnit hooks API, which takes a 
hooksobject and wires up sandbox creation and restoration tobeforeEachandafterEachof the module. 
To use, import the setup method from within your tests/test-helper.js file and execute it.
import setupSinonSandbox from 'ember-sinon-sandbox/test-support/setup-global-sinon-sandbox';
...
setupSinonSandbox();This will automatically wire-up the sandbox sinon.sandbox.create and sandbox.restore methods to QUnit testStart and testDone respectively.
To use, import the setup method from within your test file and execute it.
import { setupSinonSandbox } from 'ember-sinon-sandbox/test-support';
...
module('my module', function(hooks) {
  setupSinonSandbox(hooks);
  test('my test', function(assert) {
    ...
  })
})This will automatically wire-up the sandbox sinon.createSandbox and sandbox.restore methods to the module's beforeEach and afterEach respectively.
In each test you will be able to access the same sandboxed version of sinon via the this.sandbox property available within the test's scope:
test('very important test happening here', function(assert) {
  const spy = this.sandbox.spy();
  ...
});Both the global sinon object and the this.sandbox convenience property point to the same, test-specific instance of a sinon sandbox.
To ease the path to migrate to using ember-sinon-sandbox's version of a fully sandboxed sinon, the sandbox that's provided includes a create method, which returns the same instance of the sandbox referenced by this.sandbox. This allows you to incrementally remove usages of sandboxing within your application.
test('another equally important test', function(assert) {
  // sandbox === this.sandbox
  const sandbox = sinon.sandbox.create();
  ...
});git clone [email protected]:scalvert/ember-sinon-sandbox.gitcd ember-sinon-sandboxyarn
yarn testember testember test --server