()
| 118 | const onRest = vi.fn() |
| 119 | |
| 120 | function Component() { |
| 121 | useSpring({ |
| 122 | ref: externalRef, |
| 123 | from: { x: 0 }, |
| 124 | to: { x: 100 }, |
| 125 | onStart, |
| 126 | onRest, |
| 127 | }) |
| 128 | return null |
| 129 | } |
| 130 | |
| 131 | await render(<Component />) |
| 132 |
nothing calls this directly
no test coverage detected
searching dependent graphs…