(callback, ms = 0)
| 21 | } |
| 22 | |
| 23 | export function fireWithTimers(callback, ms = 0) { |
| 24 | act(() => { |
| 25 | callback() |
| 26 | if (ms) { |
| 27 | jest.advanceTimersByTime(ms) |
| 28 | } |
| 29 | }) |
| 30 | } |
| 31 | |
| 32 | export function hoverAnchor(anchor, ms = 0) { |
| 33 | fireWithTimers(() => { |
no outgoing calls
no test coverage detected
searching dependent graphs…