如何使用Jasmine测试嵌套的$ .when

时间:2016-04-19 14:32:35

标签: backbone.js jasmine tdd

使用以下方法测试Jasmine的正确方法是什么?:

    $.when(this.collection1.fetch()).done(()=> {
        $.when(this.collection2.fetch({reset: true})).done(()=> {
            this.render();
        });
    });

我需要确保在第二个请求开始之前首先完成this.collection1.fetch()

0 个答案:

没有答案