我正在为 Angular 应用程序运行单元测试,如果导航在 Angular 应用程序中正常工作,我想进行单元测试。
if (this.customer.length == 0) {
this.router.navigate(['/nocustomer']);
}
以及为此的单元测试
it(`should navigate to nocustomer`,()=>{
component.customers.length=0;
//what must be written here to check this
})