| 829 | |
| 830 | it('should reconcile mutated DOM attributes', () => { |
| 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); |
no test coverage detected
searching dependent graphs…