* Gets a `HarnessPredicate` that can be used to search for a tree node with specific attributes. * @param options Options for narrowing the search * @return a `HarnessPredicate` configured with the given options.
(options: TreeNodeHarnessFilters = {})
| 27 | * @return a `HarnessPredicate` configured with the given options. |
| 28 | */ |
| 29 | static with(options: TreeNodeHarnessFilters = {}): HarnessPredicate<MatTreeNodeHarness> { |
| 30 | return getNodePredicate(MatTreeNodeHarness, options); |
| 31 | } |
| 32 | |
| 33 | /** Whether the tree node is expanded. */ |
| 34 | async isExpanded(): Promise<boolean> { |
nothing calls this directly
no test coverage detected