()
| 105 | |
| 106 | it('should provide ResourceContext to the loading component', () => { |
| 107 | const Loading = () => { |
| 108 | const resource = useResourceContext(); |
| 109 | return <div>Loading resource: {resource}</div>; |
| 110 | }; |
| 111 | |
| 112 | render( |
| 113 | <ResourceContextProvider value="posts"> |
nothing calls this directly
no test coverage detected