| 831 | let check = p => render(<input type="checkbox" checked={p} />, scratch), |
| 832 | value = () => scratch.lastChild.checked, |
| 833 | setValue = p => (scratch.lastChild.checked = p); |
| 834 | check(true); |
| 835 | expect(value()).to.equal(true); |
| 836 | check(false); |
no outgoing calls
no test coverage detected
searching dependent graphs…