Mark Langton

Results 2 comments of Mark Langton

describe("Collection Suite", function(){ beforeEach(function(){ SafeCollection = Backbone.Collection.extend({ safe: "collection-safe" }); }); ``` it("given empty collection and safe when reloaded then the collection should remain empty", function(){ collection = new SafeCollection();...

Other changes I made to get collections working are :- .... var collection = { ``` // events that Safe is listening in order to // trigger save to local...