()
| 59 | let primaryActions: NodeListOf<HTMLElement>; |
| 60 | |
| 61 | const expectNoCellFocused = () => { |
| 62 | expect(Array.from(primaryActions)).not.toContain(document.activeElement as HTMLElement); |
| 63 | }; |
| 64 | |
| 65 | const expectLastCellFocused = () => { |
| 66 | expect(document.activeElement).toBe(primaryActions[primaryActions.length - 1]); |
no outgoing calls
no test coverage detected
searching dependent graphs…