(val)
| 452 | if (!/(Edge|MSIE|Trident)/.test(navigator.userAgent)) { |
| 453 | it('should not clear falsy DOM properties', () => { |
| 454 | function test(val) { |
| 455 | render( |
| 456 | <div> |
| 457 | <input value={val} /> |
| 458 | <table border={val} /> |
| 459 | </div>, |
| 460 | scratch |
| 461 | ); |
| 462 | } |
| 463 | |
| 464 | test('2'); |
| 465 | test(false); |
no test coverage detected
searching dependent graphs…