(scope)
| 74 | } |
| 75 | |
| 76 | function checkOverlap(scope) { |
| 77 | const overlap = findOverlap(scope); |
| 78 | if (overlap) { |
| 79 | console.log(`OVERLAP with ${overlap.instanceId}: ${(overlap.scope || []).join(', ')}`); |
| 80 | process.exit(1); |
| 81 | } |
| 82 | console.log('No overlap detected'); |
| 83 | } |
| 84 | |
| 85 | function sweep() { |
| 86 | const result = sweepStaleInstances(); |
no test coverage detected