(id)
| 48 | } |
| 49 | |
| 50 | export async function waitForTooltip(id) { |
| 51 | await waitFor(() => { |
| 52 | expect(document.getElementById(id)).toBeInTheDocument() |
| 53 | }) |
| 54 | return document.getElementById(id) |
| 55 | } |
| 56 | |
| 57 | export async function waitForTooltipToClose(id) { |
| 58 | await waitFor(() => { |
no outgoing calls
no test coverage detected
searching dependent graphs…