(text: string)
| 90 | } |
| 91 | |
| 92 | function getWidgetEl(text: string): HTMLElement | null { |
| 93 | const widgets = getWidgetEls(); |
| 94 | return widgets.find(widget => widget.textContent?.trim() === text) || null; |
| 95 | } |
| 96 | |
| 97 | function getWidgetEls(): HTMLElement[] { |
| 98 | return fixture.debugElement |
no test coverage detected
searching dependent graphs…