mirror of
https://github.com/chaijs/chai
synced 2024-11-14 15:57:10 +00:00
Release 0.1.4
This commit is contained in:
parent
c60ad633d1
commit
c5e98d484f
5 changed files with 24 additions and 3 deletions
12
History.md
12
History.md
|
@ -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
|
||||
==================
|
||||
|
||||
|
|
2
Makefile
2
Makefile
|
@ -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
|
|
@ -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');
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
var assert = require('..').assert;
|
||||
|
||||
suite('Assert', function () {
|
||||
|
||||
test('ok', function () {
|
||||
|
||||
});
|
||||
|
||||
});
|
Loading…
Reference in a new issue