UNPKG

chai

Version:

BDD/TDD assertion library for node.js and the browser. Test framework agnostic.

13 lines (10 loc) 233 B
/*! * chai * Copyright(c) 2011-2013 Jake Luer <jake@alogicalparadox.com> * MIT Licensed */ module.exports = function (chai, util) { chai.expect = function (val, message) { return new chai.Assertion(val, message); }; };