()
| 538 | const store = createStore((count: number = -1): number => count + 1) |
| 539 | |
| 540 | const App = () => ( |
| 541 | <ProviderMock store={store}> |
| 542 | <Comp /> |
| 543 | </ProviderMock> |
| 544 | ) |
| 545 | |
| 546 | rtl.render(<App />) |
| 547 |
nothing calls this directly
no test coverage detected