mirror of
https://github.com/chaijs/chai
synced 2024-11-14 15:57:10 +00:00
Release 0.1.7
This commit is contained in:
parent
d047691134
commit
f8dbcf9f64
3 changed files with 14 additions and 3 deletions
11
History.md
11
History.md
|
@ -1,4 +1,15 @@
|
|||
|
||||
0.1.7 / 2012-01-25
|
||||
==================
|
||||
|
||||
* added assert tests to browser test runner
|
||||
* browser update
|
||||
* `should` interface patch for primitives support in FF
|
||||
* fix isObject() Thanks @milewise
|
||||
* travis only on branch `master`
|
||||
* add instanceof alias `instanceOf`. #6
|
||||
* some tests for assert module
|
||||
|
||||
0.1.6 / 2012-01-02
|
||||
==================
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
var exports = module.exports = {};
|
||||
|
||||
exports.version = '0.1.6';
|
||||
exports.version = '0.1.7';
|
||||
|
||||
exports.expect = require('./interface/expect');
|
||||
exports.assert = require('./interface/assert');
|
||||
|
@ -24,4 +24,4 @@ exports.fail = function (actual, expected, message, operator, stackStartFunction
|
|||
operator: operator,
|
||||
stackStartFunction: stackStartFunction
|
||||
});
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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.6",
|
||||
"version": "0.1.7",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/logicalparadox/chai"
|
||||
|
|
Loading…
Reference in a new issue