(el: DebugElement, dirType: Type<any>)
| 78 | } |
| 79 | |
| 80 | function queryDirs(el: DebugElement, dirType: Type<any>): any { |
| 81 | const nodes = el.queryAllNodes(By.directive(dirType)); |
| 82 | return nodes.map((node) => node.injector.get(dirType)); |
| 83 | } |
| 84 | |
| 85 | function _bindSimpleProp<T>(bindAttr: string): ComponentFixture<TestComponent>; |
| 86 | function _bindSimpleProp<T>(bindAttr: string, compType: Type<T>): ComponentFixture<T>; |
no test coverage detected
searching dependent graphs…