(milliseconds: number)
| 31 | const typeaheadInterval = 200; |
| 32 | |
| 33 | function wait(milliseconds: number) { |
| 34 | return new Promise(resolve => setTimeout(resolve, milliseconds)); |
| 35 | } |
| 36 | |
| 37 | describe('with list option', () => { |
| 38 | let fixture: ComponentFixture<SelectionListWithListOptions>; |
no outgoing calls
no test coverage detected