Angular 2 Jasmine testing, Loading all components in app.component.ts?
I'm working on a small test app to learn Angular 2 and unit testing in Angular 2 a bit better. Coming from a react - Jest background; it feels weird to include all components in the app.component.ts. This is what the component Hierarchy looks like for what I have so far: App.Component > Layout.Component > Header.Component > Nav.Component When I run npm test, I get the error of main-header' is not a known element: When I'd fix this by Importing and declaring the component bound to that selector in App.Component.spec.ts, I would just get the same error for the next component/selector inline. Had