mirror of
https://github.com/chaijs/chai
synced 2024-11-15 00:07:11 +00:00
Release 0.1.1
This commit is contained in:
parent
0cf619caba
commit
c22ba45471
4 changed files with 24 additions and 6 deletions
18
History.md
18
History.md
|
@ -1,4 +1,22 @@
|
||||||
|
|
||||||
|
0.1.1 / 2011-12-16
|
||||||
|
==================
|
||||||
|
|
||||||
|
* docs ready for upcoming 0.1.1
|
||||||
|
* readme image fixed [ci skip]
|
||||||
|
* more readme tweaks [ci skip]
|
||||||
|
* réadmet image fixed [ci skip]
|
||||||
|
* documentation
|
||||||
|
* codex locked in version 0.0.5
|
||||||
|
* more comments to assertions for docs
|
||||||
|
* assertions fully commented, browser library updated
|
||||||
|
* adding codex as doc dependancy
|
||||||
|
* prepping for docs
|
||||||
|
* assertion component completely commented for documentation
|
||||||
|
* added exist test
|
||||||
|
* var expect outside of browser if check
|
||||||
|
* added keywords to package.json
|
||||||
|
|
||||||
0.1.0 / 2011-12-15
|
0.1.0 / 2011-12-15
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|
4
chai.js
4
chai.js
|
@ -883,7 +883,7 @@ require.register("chai.js", function(module, exports, require){
|
||||||
|
|
||||||
var exports = module.exports = {};
|
var exports = module.exports = {};
|
||||||
|
|
||||||
exports.version = '0.1.0';
|
exports.version = '0.1.1';
|
||||||
|
|
||||||
exports.expect = require('./interface/expect');
|
exports.expect = require('./interface/expect');
|
||||||
exports.assert = require('./interface/assert');
|
exports.assert = require('./interface/assert');
|
||||||
|
@ -901,7 +901,7 @@ exports.fail = function (actual, expected, message, operator, stackStartFunction
|
||||||
operator: operator,
|
operator: operator,
|
||||||
stackStartFunction: stackStartFunction
|
stackStartFunction: stackStartFunction
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
}); // module: chai.js
|
}); // module: chai.js
|
||||||
|
|
||||||
require.register("error.js", function(module, exports, require){
|
require.register("error.js", function(module, exports, require){
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
var exports = module.exports = {};
|
var exports = module.exports = {};
|
||||||
|
|
||||||
exports.version = '0.1.0';
|
exports.version = '0.1.1';
|
||||||
|
|
||||||
exports.expect = require('./interface/expect');
|
exports.expect = require('./interface/expect');
|
||||||
exports.assert = require('./interface/assert');
|
exports.assert = require('./interface/assert');
|
||||||
|
@ -24,4 +24,4 @@ exports.fail = function (actual, expected, message, operator, stackStartFunction
|
||||||
operator: operator,
|
operator: operator,
|
||||||
stackStartFunction: stackStartFunction
|
stackStartFunction: stackStartFunction
|
||||||
});
|
});
|
||||||
}
|
};
|
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"author": "Jake Luer <jake@alogicalparadox.com>",
|
"author": "Jake Luer <jake@alogicalparadox.com>",
|
||||||
"name": "chai",
|
"name": "chai",
|
||||||
"description": "BDD/TDD assertion framework for node.js and the browser.",
|
"description": "BDD/TDD assertion library for node.js and the browser. Test framework agnostic.",
|
||||||
"keywords": [ "test", "assertion", "assert", "testing" ],
|
"keywords": [ "test", "assertion", "assert", "testing" ],
|
||||||
"version": "0.1.0",
|
"version": "0.1.1",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/logicalparadox/chai"
|
"url": "https://github.com/logicalparadox/chai"
|
||||||
|
|
Loading…
Reference in a new issue