标签: backbone.js jasmine tdd
使用以下方法测试Jasmine的正确方法是什么?:
$.when(this.collection1.fetch()).done(()=> { $.when(this.collection2.fetch({reset: true})).done(()=> { this.render(); }); });
我需要确保在第二个请求开始之前首先完成this.collection1.fetch()。
this.collection1.fetch()