mirror of
https://github.com/rschamp/gh-pages.git
synced 2025-11-04 21:01:11 +08:00
13 lines
213 B
JavaScript
13 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;
|