trying to test the following angular component code with jest. It takes an input of a label within the html for a label to a mat-card, and outputs an event emitter. Here is what it looks like. code coverage is already 80+ as is but I am curious how to actually test this portion.
export class KpiContainerComponent {
@Input() label: string;
@Output() handleClick: EventEmitter<any> = new EventEmitter();
public emitClick() {
this.handleClick.emit();
}
}