Jasmine 2.0 비동기 done () 및 angular-mocks inject () 동일한 테스트 it () 내 일반적인 테스트 케이스는 다음과 같습니다. it("should send get request", inject(function(someServices) { //some test })); 그리고 Jasmine 2.0 비동기 테스트는 다음과 같아야합니다. it("should send get request", function(done) { someAsync.then(function(){ done(); }); }); done과 injection을 하나의 테스트에서 어떻게 사용할 수 있습니까? 작동합니다. Jasmine 2.0으로 업데이트 할 때 동일한 문제가 발생했습니다. it("should se..