instance
Version:
Get an instance back
30 lines (20 loc) • 328 B
JavaScript
/**
* External dependencies.
*/
var chai = require('chai');
/**
* Export `assert`.
*/
global.assert = chai.assert;
/**
* Do not show diffs.
*/
chai.Assertion.showDiff = false;
/**
* Include stack traces.
*/
chai.Assertion.includeStack = true;
/**
* Export the subject.
*/
global.instance = require('../../');