()
| 21 | |
| 22 | it('keeps the id consistent after an update', () => { |
| 23 | function Comp() { |
| 24 | const id = useId(); |
| 25 | return <div id={id} />; |
| 26 | } |
| 27 | |
| 28 | render(<Comp />, scratch); |
| 29 | const id = scratch.firstChild.getAttribute('id'); |
nothing calls this directly
no test coverage detected
searching dependent graphs…