mirror of
https://github.com/chaijs/chai
synced 2024-11-14 15:57:10 +00:00
Release 0.2.2
This commit is contained in:
parent
0b215480db
commit
19011701aa
4 changed files with 9 additions and 3 deletions
|
@ -1,4 +1,9 @@
|
|||
|
||||
0.2.2 / 2012-02-01
|
||||
==================
|
||||
|
||||
* added `been` (past of `be`) alias
|
||||
|
||||
0.2.1 / 2012-01-29
|
||||
==================
|
||||
|
||||
|
|
3
chai.js
3
chai.js
|
@ -936,6 +936,7 @@ Object.defineProperty(Assertion.prototype, 'html',
|
|||
('below', 'lessThan')
|
||||
('throw', 'throws')
|
||||
('throw', 'Throw') // for troublesome browsers
|
||||
('be', 'been') // past tense
|
||||
('instanceof', 'instanceOf');
|
||||
|
||||
}); // module: assertion.js
|
||||
|
@ -949,7 +950,7 @@ require.register("chai.js", function(module, exports, require){
|
|||
|
||||
var exports = module.exports = {};
|
||||
|
||||
exports.version = '0.2.1';
|
||||
exports.version = '0.2.2';
|
||||
|
||||
exports.Assertion = require('./assertion');
|
||||
exports.AssertionError = require('./error');
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
var exports = module.exports = {};
|
||||
|
||||
exports.version = '0.2.1';
|
||||
exports.version = '0.2.2';
|
||||
|
||||
exports.Assertion = require('./assertion');
|
||||
exports.AssertionError = require('./error');
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "chai",
|
||||
"description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.",
|
||||
"keywords": [ "test", "assertion", "assert", "testing" ],
|
||||
"version": "0.2.1",
|
||||
"version": "0.2.2",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/logicalparadox/chai"
|
||||
|
|
Loading…
Reference in a new issue