(ms)
| 1318 | } |
| 1319 | |
| 1320 | function sleep(ms) { |
| 1321 | return new Promise((resolve) => setTimeout(resolve, ms)); |
| 1322 | } |
| 1323 | |
| 1324 | async function waitUntil(predicate, timeoutMs) { |
| 1325 | const deadline = performance.now() + timeoutMs; |
no outgoing calls
no test coverage detected