Tentei:
expect(component.id).not.toBeFalsy();
e
expect(component.id).not.toBeNull();
e continua dando:
=============================== Coverage summary ===============================
Statements : 100% ( 26/26 )
**Branches : 83.33% ( 5/6 ) **
Functions : 100% ( 7/7 )
Lines : 100% ( 23/23 )
================================================================================
e
public ngOnInit(): void {
if(!this.id) { // E: **else path not taken**
this.id = this.uniqueIdService.generateUniqueIdWithPrefix('like-widget');
}
}