* @returns All `DebugNode` matches for the predicate at any depth in the subtree.
(predicate: Predicate<DebugNode>)
| 335 | * @returns All `DebugNode` matches for the predicate at any depth in the subtree. |
| 336 | */ |
| 337 | queryAllNodes(predicate: Predicate<DebugNode>): DebugNode[] { |
| 338 | const matches: DebugNode[] = []; |
| 339 | _queryAll(this, predicate, matches, false); |
| 340 | return matches; |
| 341 | } |
| 342 | |
| 343 | /** |
| 344 | * Triggers the event by its name if there is a corresponding listener in the element's |
no test coverage detected