微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何以角度为 setTimeout 函数和 activeElement 编写单元测试?

如何解决如何以角度为 setTimeout 函数和 activeElement 编写单元测试?

我想为以下函数编写单元测试用例:

onfactorblur():void{
  var that=this;
  setTimeout(function(){
    var target=document.activeElement;
    if(target.tagName=="BUTTON"){
      if(target.textContent=="CONTINUE"){
        that.onContinueClick();
      }
      else{
        that.activeModal.close();
      }
     }
   },.5);
 }

我是 Angular 单元测试的新手,从来没有遇到过我必须在函数内测试 setTimeout 的情况。我试过了:

    it('Should close the modal if target element is button',fakeAsync(()=>{
    spyOn(component,'onContinueClick');
    spyOn(component.activeModal,'close');
    tick(1);
    fixture.detectChanges();
    fixture.whenStable().then(()=>{
    //What should I write here
      })
    }));

解决方法

可以使用fakeAsync,可以调用tick(500)来模拟时间的异步流逝 更多详情请点击https://angular.io/guide/testing-components-scenarios#async-test-with-fakeasync

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。