(reason)
| 128 | } |
| 129 | |
| 130 | function scheduleFinish(reason) { |
| 131 | if (finishHandle || finished) return; |
| 132 | finishHandle = setTimeout(() => finish(reason), settleMs); |
| 133 | } |
| 134 | |
| 135 | function finish(reason) { |
| 136 | if (finished) return; |
no test coverage detected