()
| 95 | let Spy = jest.fn(props => <div {...props} />); |
| 96 | |
| 97 | const Component = () => { |
| 98 | let id1 = 'id1'; |
| 99 | let id2 = useId('id2'); |
| 100 | |
| 101 | mergeProps({id: id1}, {id: id2}); |
| 102 | |
| 103 | return <Spy id={id2} />; |
| 104 | }; |
| 105 | |
| 106 | render(<Component />); |
| 107 |
nothing calls this directly
no test coverage detected