(component: Type<T>, providers: Provider[] = [])
| 40 | let platform: Platform; |
| 41 | |
| 42 | function createComponent<T>(component: Type<T>, providers: Provider[] = []): ComponentFixture<T> { |
| 43 | TestBed.configureTestingModule({providers}); |
| 44 | platform = TestBed.inject(Platform); |
| 45 | return TestBed.createComponent<T>(component); |
| 46 | } |
| 47 | |
| 48 | function checkInput( |
| 49 | input: MatSliderThumb, |
no outgoing calls
no test coverage detected
searching dependent graphs…