({ asyncprogressqueueworker })
| 18 | } |
| 19 | |
| 20 | async function test ({ asyncprogressqueueworker }) { |
| 21 | await success(asyncprogressqueueworker); |
| 22 | await fail(asyncprogressqueueworker); |
| 23 | |
| 24 | await asyncProgressWorkerCallbackOverloads(asyncprogressqueueworker.runWorkerWithCb); |
| 25 | await asyncProgressWorkerRecvOverloads(asyncprogressqueueworker.runWorkerWithRecv); |
| 26 | await asyncProgressWorkerNoCbOverloads(asyncprogressqueueworker.runWorkerNoCb); |
| 27 | } |
| 28 | |
| 29 | async function asyncProgressWorkerCallbackOverloads (bindingFunction) { |
| 30 | bindingFunction(common.mustCall()); |
nothing calls this directly
no test coverage detected