Assert
View full Assert API
The assert style is exposed through assert interface. This provides
the classic assert-dot notation, similiar to that packaged with
node.js. This assert module, however, provides several additional
tests and is browser compatible.
var assert = require('chai').assert
, foo = 'bar'
, beverages = { tea: [ 'chai', 'matcha', 'oolong' ] };
assert.typeOf(foo, 'string', 'foo is a string');
assert.equal(foo, 'bar', 'foo equal `bar`');
assert.lengthOf(foo, 3, 'foo`s value has a length of 3');
assert.lengthOf(beverages.tea, 3, 'beverages has 3 types of tea');
In all cases, the assert style allows you to include an optional message as the
last parameter in the assert statement. These will be included in the
error messages should your assertion not pass.
BDD
View full BDD API
The BDD style comes in two flavors: expect and should. Both use the same
chainable language to construct assertions, but they differ in the how an
assertion is initially constructed. In the case of should, there are also
some caveats and additional tools to overcome the caveats.
Expect
The BDD style is exposed through expect or should interfaces. In both
scenarios, you chain together natural language assertions.
var expect = require('chai').expect
, foo = 'bar'
, beverages = { tea: [ 'chai', 'matcha', 'oolong' ] };
expect(foo).to.be.a('string');
expect(foo).to.equal('bar');
expect(foo).to.have.length(3);
expect(beverages).to.have.property('tea').with.length(3);
Expect also allows you to include arbitrary messages to prepend to any failed
assertions that might occur.
var answer = 43;
expect(answer).to.equal(42);
expect(answer, 'topic [answer]').to.equal(42);
This comes in handy when being used with non-descript topics such as
booleans or numbers.
Should
The should style allows for the same chainable assertions as the
expect interface, however it extends each object with a should
property to start your chain. This style has some issues when used Internet
Explorer, so be aware of browser compatibility.
var should = require('chai').should()
, foo = 'bar'
, beverages = { tea: [ 'chai', 'matcha', 'oolong' ] };
foo.should.be.a('string');
foo.should.equal('bar');
foo.should.have.length(3);
beverages.should.have.property('tea').with.length(3);
Differences
First of all, notice that the expect require is just a reference to the
expect function, whereas with the should require, the function is
being executed.
var chai = require('chai')
, expect = chai.expect
, should = chai.should();
The expect interface provides a function as a starting point for chaining
your language assertions. It works on node.js and in all browsers.
The should interface extends Object.prototype to provide a single getter as
the starting point for your language assertions. It works on node.js and in
all browsers except Internet Explorer.
Configuration
By default, Chai does not show stack traces upon an AssertionError. This can
be changed by modifying the includeStack parameter for chai.Assertion. For example:
var chai = require('chai');
chai.Assertion.includeStack = true;