(target: HTMLElement)
| 57 | const click = async (target: HTMLElement) => await clickHelper(target); |
| 58 | const shiftClick = async (target: HTMLElement) => await clickHelper(target, {shiftKey: true}); |
| 59 | const ctrlClick = async (target: HTMLElement) => await clickHelper(target, {ctrlKey: true}); |
| 60 | |
| 61 | async function setupTestTree(textDirection: Direction = 'ltr') { |
| 62 | TestBed.configureTestingModule({ |
no test coverage detected
searching dependent graphs…