(entityType: string)
| 1642 | ) |
| 1643 | |
| 1644 | const waitForEntityManager = (entityType: string) => { |
| 1645 | let latch = entityManagerLatches.get(entityType) |
| 1646 | if (!latch) { |
| 1647 | latch = Latch.makeUnsafe() |
| 1648 | entityManagerLatches.set(entityType, latch) |
| 1649 | } |
| 1650 | return latch.await |
| 1651 | } |
| 1652 | |
| 1653 | // --- Runner health checks --- |
| 1654 |
no test coverage detected