在每次测试时重新写入路由器的URL值。因为它是只读属性,请考虑使用
Object.defineProperty
:
it('should display div when on the home page', () => {
Object.defineProperty(component.router, 'url', { writable: true, value: '/home'});
expect(el.query(By.css('.header')).nativeElement.style.visibility).toBe(true);
});
it('should hide div when not on home page', () => {
Object.defineProperty(component.router, 'url', { writable: true, value: '/not-home'});
expect(el.query(By.css('.header')).nativeElement.style.visibility).toBe(false);
});