()
| 503 | describe('panel options behavior', () => { |
| 504 | it('should set the selected state of the options based on the input value', () => { |
| 505 | const getStates = () => { |
| 506 | return getOptions().map( |
| 507 | o => `${o.textContent} - ${o.classList.contains('mdc-list-item--selected')}`, |
| 508 | ); |
| 509 | }; |
| 510 | const fixture = TestBed.createComponent(StandaloneTimepicker); |
| 511 | const input = getInput(fixture); |
| 512 | fixture.componentInstance.min.set(createTime(12, 0)); |
no test coverage detected