(ref: SpringRef | null)
| 468 | } |
| 469 | |
| 470 | function testIsRef(ref: SpringRef | null) { |
| 471 | const props = [ |
| 472 | 'add', |
| 473 | 'delete', |
| 474 | 'pause', |
| 475 | 'resume', |
| 476 | 'set', |
| 477 | 'start', |
| 478 | 'stop', |
| 479 | 'update', |
| 480 | '_getProps', |
| 481 | ] |
| 482 | props.forEach(prop => expect(ref).toHaveProperty(prop)) |
| 483 | } |
no test coverage detected
searching dependent graphs…