({count})
| 65 | describe(`${label}`, () => { |
| 66 | it('bails out on props equality', async () => { |
| 67 | function Counter({count}) { |
| 68 | return <Text text={count} />; |
| 69 | } |
| 70 | Counter = memo(Counter); |
| 71 | |
| 72 | await act(() => |
nothing calls this directly
no test coverage detected