(ref: SpringRef | null)
| 460 | } |
| 461 | |
| 462 | function testIsRef(ref: SpringRef | null) { |
| 463 | const props = [ |
| 464 | 'add', |
| 465 | 'delete', |
| 466 | 'pause', |
| 467 | 'resume', |
| 468 | 'set', |
| 469 | 'start', |
| 470 | 'stop', |
| 471 | 'update', |
| 472 | '_getProps', |
| 473 | ] |
| 474 | props.forEach(prop => expect(ref).toHaveProperty(prop)) |
| 475 | } |
no test coverage detected
searching dependent graphs…