(expected?: Partial<TNode>)
| 90 | * @param expected optional properties which the `TNode` must contain. |
| 91 | */ |
| 92 | export function matchTNode(expected?: Partial<TNode>): jasmine.AsymmetricMatcher<TNode> { |
| 93 | return matchObjectShape('TNode', isTNode, expected); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Asymmetric matcher which matches a `T18n` of a given shape. |
no test coverage detected
searching dependent graphs…