我正在尝试使用jasmine
按钮点击功能进行测试。但是当我运行我的测试运行器时,运行indefinitely
为什么。我写这样的测试用例
xit('should called service method on button click', inject([SignupserviceService], (signupserviceService: SignupserviceService) => {
spyOn(signupserviceService, 'signUpHandler');
let button = fixture.nativeElement.querySelector('.btn')
button.click();
expect(signupserviceService.signUpHandler).toHaveBeenCalled();
}));
当您移除x
it
浏览器重新加载indefinitely
前面时。我不确定为什么会这样?
这是我的代码 https://stackblitz.com/edit/angular-testing-kdb8ka?file=app%2Fapp.component.spec.ts
任何更新