(valueString: string)
| 527 | }; |
| 528 | |
| 529 | const selectOptionViaUI = async (valueString: string): Promise<void> => { |
| 530 | const select = fixture.debugElement.query(By.css('select')); |
| 531 | select.nativeElement.value = valueString; |
| 532 | dispatchEvent(select.nativeElement, 'change'); |
| 533 | await fixture.whenStable(); |
| 534 | }; |
| 535 | |
| 536 | const assertOptionElementSelectedState = (selectedStates: boolean[]): void => { |
| 537 | const options = fixture.debugElement.queryAll(By.css('option')); |
no test coverage detected