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

A few more Sinon.JS test helpers


Sinon.JS provides many useful tools beyond the core test double abstractions of spies, stubs, and mocks. We have already been introduced to the sinon.test wrapper in Chapter 4, Test Spies, and will examine a few more equally convenient helpers in this chapter.

Tip

Some test helpers such as timers and servers may require the use of IE-specific Sinon.JS libraries when used with the Internet Explorer web browser. See the relevant Sinon.JS documentation sections for more details.

Fake timers

Sinon.JS can patch time and date intervals to help manage asynchronous events and callbacks in tests. Sinon.JS fake timers override native JavaScript functions, such as setTimeout and the Date class. Once faked, test code must manually advance the time through the API tick(ms) function that simulates the passage of time for any time-based asynchronous event in the program. See http://sinonjs.org/docs/#clock for the full API reference.

Fake timers are quite useful for testing Backbone...

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