Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Backbone.js Testing

You're reading from   Backbone.js Testing

Arrow left icon
Product type Paperback
Published in Jul 2013
Publisher
ISBN-13 9781782165248
Length 168 pages
Edition Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Ryan Glenn Roemer Ryan Glenn Roemer
Author Profile Icon Ryan Glenn Roemer
Ryan Glenn Roemer
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Backbone.js Testing
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Setting Up a Test Infrastructure 2. Creating a Backbone.js Application Test Plan FREE CHAPTER 3. Test Assertions, Specs, and Suites 4. Test Spies 5. Test Stubs and Mocks 6. Automated Web Testing Index

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 complications arise when testing asynchronous application code. Given that the Backbone.js application's behavior is quite often asynchronous/event-driven, we need to have a solid and straightforward test approach.

Fortunately, Mocha provides an...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image