(i)
| 499 | var badProps = [np(5, 'a'), np(undefined, 'a'), np('cats', 'a'), np(true, 'a')]; |
| 500 | |
| 501 | function badSetter(i) { |
| 502 | return function () { |
| 503 | badProps[i].set('cats'); |
| 504 | }; |
| 505 | } |
| 506 | |
| 507 | for (var i = 0; i < badProps.length; i++) { |
| 508 | expect(badProps[i].get()).toBe(undefined); |
no outgoing calls
no test coverage detected
searching dependent graphs…