(w, cb)
| 54 | } |
| 55 | |
| 56 | function spinUntilIdle(w, cb) { |
| 57 | const t = w.performance.eventLoopUtilization(); |
| 58 | if (t.idle + t.active > 0) |
| 59 | return process.nextTick(cb); |
| 60 | setTimeout(() => spinUntilIdle(w, cb), 1); |
| 61 | } |
no test coverage detected
searching dependent graphs…