()
| 32 | setInteractionModality('virtual'); |
| 33 | |
| 34 | const Example = () => <button>Button</button>; |
| 35 | const {unmount} = render(<Example />); |
| 36 | |
| 37 | const button = document.body.querySelector('button'); |
| 38 | |
| 39 | requestAnimationFrame(() => { |
| 40 | unmount(); |
nothing calls this directly
no test coverage detected