(expected?: Partial<TIcu>)
| 128 | * @param expected optional properties which the `TIcu` must contain. |
| 129 | */ |
| 130 | export function matchTIcu(expected?: Partial<TIcu>): jasmine.AsymmetricMatcher<TIcu> { |
| 131 | return matchObjectShape('TIcu', isTIcu, expected); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Asymmetric matcher which matches a DOM Element. |
no test coverage detected
searching dependent graphs…