Release 0.1.4

This commit is contained in:
Jake Luer 2011-12-26 13:19:22 -05:00
parent c60ad633d1
commit c5e98d484f
5 changed files with 24 additions and 3 deletions

View file

@ -1,4 +1,16 @@
0.1.4 / 2011-12-26
==================
* browser lib update for new assert interface compatiblitiy
* inspect typos
* added strict equal + negatives and ifError
* interface assert had doesNotThrow
* added should tests to browser
* new expect empty tests
* should test browser compat
* Fix typo for instanceof docs. Closes #3 [ci skip]
0.1.3 / 2011-12-18
==================

View file

@ -23,7 +23,7 @@ clean-docs:
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
--ui exports \
--ui tdd \
$(TESTS)
.PHONY: clean test docs clean-docs

View file

@ -6,7 +6,7 @@
var exports = module.exports = {};
exports.version = '0.1.3';
exports.version = '0.1.4';
exports.expect = require('./interface/expect');
exports.assert = require('./interface/assert');

View file

@ -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.3",
"version": "0.1.4",
"repository": {
"type": "git",
"url": "https://github.com/logicalparadox/chai"

View file

@ -0,0 +1,9 @@
var assert = require('..').assert;
suite('Assert', function () {
test('ok', function () {
});
});