标签: angular typescript
我有一个依赖于翻译的组件。我想通过使用不同版本的内部HTML调用它来测试它。我该怎么办?
<div> <ng-content></ng-content> </div>
现在我想编写一个将HTML放入组件的测试。它看起来像这样:
fixture = TestBed.createComponent(MyComponent, '<app-mycomponent>My testing content</app-mycomponent>');