no like-widget.component tenho o seguinte tratamento para um Input prefix:
this.prefix = this.prefix ? this.prefix : 'like-widget';
no teste:
it(`#Should use prefix during ngOnInit when (@Inupt prefix) is not assigned`, () => {
const prefix = 'somePrefix';
component.prefix = prefix;
fixture.detectChanges();
expect(component.prefix).toBe(prefix)
});
it(`#Should empty prefix during ngOnInit when (@Input prefix) is not assigned`, () => {
component.prefix = '';
fixture.detectChanges();
expect(component.prefix).toBeTruthy('like-widget');
});
como devo fazer a verificação desta propriedade para aumentar a %: