| 397 | |
| 398 | const valueSpy = expect.createSpy(() => ({})) |
| 399 | @connect(({ foo }) => ({ |
| 400 | testFetch: { |
| 401 | value: () => { valueSpy() }, |
| 402 | comparison: foo.FOO |
| 403 | } |
| 404 | })) |
| 405 | class WithProps extends Component { |
| 406 | render() { |
| 407 | return render(this.props) |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | class OuterComponent extends Component { |
| 412 | constructor() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…