()
| 152 | } |
| 153 | |
| 154 | async function expandAll() { |
| 155 | const fruitsEl = getTreeItemElementByValue('fruits')!; |
| 156 | await click(fruitsEl); |
| 157 | const berriesEl = getTreeItemElementByValue('berries')!; |
| 158 | await click(berriesEl); |
| 159 | const vegetablesEl = getTreeItemElementByValue('vegetables')!; |
| 160 | await click(vegetablesEl); |
| 161 | await updateTree({value: []}); |
| 162 | } |
| 163 | |
| 164 | afterEach(async () => { |
| 165 | await fixture.whenStable(); |
no test coverage detected
searching dependent graphs…