You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test("#walkPath() should not observe Backbone.Models properties, you should observe this by yourself directly by binding watchers on submodels",function(){
1121
+
varnonAttributeChange=sinon.spy();
1122
+
varchangeFromRootModel=sinon.spy();
1123
+
varchangeFromSubModel=sinon.spy();
1124
+
1125
+
varmodel=newBackbone.NestedModel({
1126
+
submodel: newBackbone.Model({foo: "bar"})
1127
+
});
1128
+
1129
+
// submodel.cid is amongst the Backbone.Model fields which should not be observable
0 commit comments