()
| 16 | function asyncUtils(act: Act, addResolver: (callback: () => void) => void): AsyncUtils { |
| 17 | const wait = async (callback: () => boolean | void, { interval, timeout }: WaitOptions) => { |
| 18 | const checkResult = () => { |
| 19 | const callbackResult = callback() |
| 20 | return callbackResult ?? callbackResult === undefined |
| 21 | } |
| 22 | |
| 23 | const timeoutSignal = createTimeoutController(timeout) |
| 24 |
no test coverage detected
searching dependent graphs…