'router-outlet' is not a known element
Action:
When executing the command ng test
Solution:
Add in app.component.spec.ts
import {RouterTestingModule} from '@angular/router/testing';
beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ AppComponent ], imports: [ RouterTestingModule ] });
...
font












