Writing Mocha test specifications

With practically everything else in place, we finally turn to writing test specifications. Mocha BDD specifications are declared using the it() function with the following function signature:

it(description, callback);

The description string, by convention, is a statement of the expected behavior under test, and the callback function executes the tests. For example, assuming we have an empty this.notes collection variable, a test of the default values in App.Collections.Notes can be as simple as the following:

it("has default values", function () {
  expect(this.notes).to.be.ok;
  expect(this.notes).to.have.length(0);
});

Asynchronous behavior in tests

Although basic test specifications are quite simple, flow control ...

Get Backbone.js Testing now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.