Minor test cleanup after upgrade

This commit is contained in:
Tim Donohue
2023-03-02 14:25:53 -06:00
parent 599e8a777e
commit 1ae3c183d4
12 changed files with 29 additions and 20 deletions

View File

@@ -28,7 +28,8 @@
[title]="'toggle ' + node.name"
[attr.aria-label]="'toggle ' + node.name"
(click)="toggleExpanded(node)"
[ngClass]="(hasChild(null, node)| async) ? 'visible' : 'invisible'">
[ngClass]="(hasChild(null, node)| async) ? 'visible' : 'invisible'"
[attr.data-test]="(hasChild(null, node)| async) ? 'expand-button' : ''">
<span class="{{node.isExpanded ? 'fa fa-chevron-down' : 'fa fa-chevron-right'}}"
aria-hidden="true"></span>
</button>