Testing Backbone.js components with stubs and mocks
With the addition of stubs and mocks to our test infrastructure, we are ready to tackle the remaining components of our Backbone.js application that we will cover in this book: the App.Views.NotesItem
view and the App.Routers.Router
router. For those following along in the code examples, we will integrate the specs for these application components into the test driver page chapters/05/test/test.html
.
Ensuring stubs and mocks are actually bound
One preliminary Sinon.JS issue that can trip up developers is making sure that spies, stubs, and mocks are actually bound to the expected methods of a Backbone.js application object during a test.
Let's start with a simple Backbone.js view named MyView
. The ...
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.