()
| 78 | const { hook } = memoryLocation({ path: "/" }); |
| 79 | |
| 80 | const LocationDisplay = () => { |
| 81 | const [location] = useLocation(); |
| 82 | return <span data-testid="location">{location}</span>; |
| 83 | }; |
| 84 | |
| 85 | const { getByTestId } = render( |
| 86 | <Router hook={hook} aroundNav={aroundNav}> |
nothing calls this directly
no test coverage detected
searching dependent graphs…