mirror of
https://github.com/chaijs/chai
synced 2024-11-15 08:17:14 +00:00
79 lines
1.1 KiB
JavaScript
79 lines
1.1 KiB
JavaScript
/*!
|
|
* chai
|
|
* Copyright(c) 2011-2012 Jake Luer <jake@alogicalparadox.com>
|
|
* MIT Licensed
|
|
*/
|
|
|
|
var used = []
|
|
, exports = module.exports = {};
|
|
|
|
/*!
|
|
* Chai version
|
|
*/
|
|
|
|
exports.version = '1.4.0';
|
|
|
|
/*!
|
|
* Primary `Assertion` prototype
|
|
*/
|
|
|
|
exports.Assertion = require('./chai/assertion');
|
|
|
|
/*!
|
|
* Assertion Error
|
|
*/
|
|
|
|
exports.AssertionError = require('./chai/error');
|
|
|
|
/*!
|
|
* Utils for plugins (not exported)
|
|
*/
|
|
|
|
var util = require('./chai/utils');
|
|
|
|
/**
|
|
* # .use(function)
|
|
*
|
|
* Provides a way to extend the internals of Chai
|
|
*
|
|
* @param {Function}
|
|
* @returns {this} for chaining
|
|
* @api public
|
|
*/
|
|
|
|
exports.use = function (fn) {
|
|
if (!~used.indexOf(fn)) {
|
|
fn(this, util);
|
|
used.push(fn);
|
|
}
|
|
|
|
return this;
|
|
};
|
|
|
|
/*!
|
|
* Core Assertions
|
|
*/
|
|
|
|
var core = require('./chai/core/assertions');
|
|
exports.use(core);
|
|
|
|
/*!
|
|
* Expect interface
|
|
*/
|
|
|
|
var expect = require('./chai/interface/expect');
|
|
exports.use(expect);
|
|
|
|
/*!
|
|
* Should interface
|
|
*/
|
|
|
|
var should = require('./chai/interface/should');
|
|
exports.use(should);
|
|
|
|
/*!
|
|
* Assert interface
|
|
*/
|
|
|
|
var assert = require('./chai/interface/assert');
|
|
exports.use(assert);
|