使用offsetParent
,在使用Jasmine / Karma进行单元测试时,是否有办法判断某个组件是否可见?
如果我有一些组件:
<my-component *ngIf="some condition"></my-component>
如果some condition
为真,我想编写一个检查该组件是否可见的测试。
我正在尝试类似的事情:
// Assert
expect(ftuFixture.nativeElement.offsetParent).toEqual(!null);
由于