(expected?: Partial<TView>)
| 71 | * @param expected optional properties which the `TView` must contain. |
| 72 | */ |
| 73 | export function matchTView(expected?: Partial<TView>): jasmine.AsymmetricMatcher<TView> { |
| 74 | return matchObjectShape('TView', isTView, expected); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Asymmetric matcher which matches a `TNode` of a given shape. |
no test coverage detected
searching dependent graphs…