* Returns a promise that resolves when all children this node have reached * at least the given state.
(state: TargetState)
| 675 | * at least the given state. |
| 676 | */ |
| 677 | public async waitUntilChildrenAre(state: TargetState) { |
| 678 | await Promise.all([...this._children].map(c => c.waitUntil(state))); |
| 679 | } |
| 680 | |
| 681 | /** |
| 682 | * Returns an iterator that lists all targets in the tree. |
no test coverage detected