mirror of
https://github.com/chaijs/chai
synced 2024-11-14 15:57:10 +00:00
Release 0.1.5
This commit is contained in:
parent
1d2a4fa70b
commit
b93353afb3
4 changed files with 13 additions and 3 deletions
10
History.md
10
History.md
|
@ -1,4 +1,14 @@
|
|||
|
||||
0.1.5 / 2012-01-02
|
||||
==================
|
||||
|
||||
* browser tests pass
|
||||
* type in should.not.equal
|
||||
* test for should (not) exist
|
||||
* added should.exist and should.not.exist
|
||||
* browser uses tdd
|
||||
* convert tests to tdd
|
||||
|
||||
0.1.4 / 2011-12-26
|
||||
==================
|
||||
|
||||
|
|
2
chai.js
2
chai.js
|
@ -944,7 +944,7 @@ require.register("chai.js", function(module, exports, require){
|
|||
|
||||
var exports = module.exports = {};
|
||||
|
||||
exports.version = '0.1.4';
|
||||
exports.version = '0.1.5';
|
||||
|
||||
exports.expect = require('./interface/expect');
|
||||
exports.assert = require('./interface/assert');
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
var exports = module.exports = {};
|
||||
|
||||
exports.version = '0.1.4';
|
||||
exports.version = '0.1.5';
|
||||
|
||||
exports.expect = require('./interface/expect');
|
||||
exports.assert = require('./interface/assert');
|
||||
|
|
|
@ -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.1.4",
|
||||
"version": "0.1.5",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/logicalparadox/chai"
|
||||
|
|
Loading…
Reference in a new issue