mirror of
https://github.com/scratchfoundation/gh-pages.git
synced 2024-11-25 00:38:07 -05:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
var chai = require('chai');
|
|
|
|
|
|
/** @type {boolean} */
|
|
chai.config.includeStack = true;
|
|
|
|
|
|
/**
|
|
* Chai's assert function configured to include stacks on failure.
|
|
* @type {function}
|
|
*/
|
|
exports.assert = chai.assert;
|