本文介绍了Jasmine 2.0 async done() 和 angular-mocks injection() 在同一个测试 it()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我平时的测试用例是这样的

My usual test case looks like

it("should send get request", inject(function(someServices) {
     //some test
}));

Jasmine 2.0 异步测试应该是这样的

And Jasmine 2.0 async test should look like

it("should send get request", function(done) {
     someAsync.then(function(){
         done();
     });
});

如何在一个测试中同时使用 done 和 injection?

How can I use both done and inject in one test?

推荐答案

这应该可以;我更新到 Jasmine 2.0 时遇到了同样的问题

This should work; I ran into the same problem when I updated to Jasmine 2.0

it("should send get request", function(done) {
    inject(function(someServices) {
        //some async test
        done();
    })(); // function returned by 'inject' has to be invoked
});

这篇关于Jasmine 2.0 async done() 和 angular-mocks injection() 在同一个测试 it()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 08:40