karma测试有如下提示,'app-header' is not a known element:
If 'app-header' is an Angular component, then verify that it is part of this module.
事实上运行均正常,已经声明了组件并且位于同一个模块
karma测试有如下提示,'app-header' is not a known element:
If 'app-header' is an Angular component, then verify that it is part of this module.
事实上运行均正常,已经声明了组件并且位于同一个模块
可以在测试模块中指定
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
,可以忽略这类子组件影响当前组件测试。