()
| 130 | |
| 131 | it('should provide ResourceContext to the empty component', () => { |
| 132 | const Empty = () => { |
| 133 | const resource = useResourceContext(); |
| 134 | return <div>Empty resource: {resource}</div>; |
| 135 | }; |
| 136 | |
| 137 | render( |
| 138 | <ResourceContextProvider value="posts"> |
nothing calls this directly
no test coverage detected