2016-12-19 6 views
0
SecurityService.prototype.Feedback = function() { 
    window.open('https://www.google.com/', '_blank'); 

나는

답변

0

각도 2의 재스민에서 위의 코드에 대한 테스트 케이스를 작성해야합니다. 당신이 할 경우

, 당신은 쉽게 다음과 같이 테스트 할 수 있습니다

spyOn($window, 'open'); 

//call your function here 

expect($window.open).toHaveBeenCalledWith('https://www.google.com/', '_blank'); 

희망을.