({children})
| 120 | } |
| 121 | |
| 122 | function DivWithId({children}) { |
| 123 | const id = normalizeTreeIdForTesting(useId()); |
| 124 | return <div id={id}>{children}</div>; |
| 125 | } |
| 126 | |
| 127 | it('basic example', async () => { |
| 128 | function App() { |
nothing calls this directly
no test coverage detected