(id)
| 61 | } |
| 62 | |
| 63 | export async function waitForTooltipToStopShowing(id) { |
| 64 | await waitFor(() => { |
| 65 | const tooltip = document.getElementById(id) |
| 66 | expect(tooltip === null || tooltip.classList.contains('react-tooltip__closing')).toBe(true) |
| 67 | }) |
| 68 | } |
| 69 | |
| 70 | export function renderTooltip({ |
| 71 | id = 'test-tooltip', |
no outgoing calls
no test coverage detected
searching dependent graphs…