()
| 8 | |
| 9 | let asyncHooks; |
| 10 | function checkAsyncHooks () { |
| 11 | if (nodeVersion >= 8) { |
| 12 | if (asyncHooks === undefined) { |
| 13 | asyncHooks = require('async_hooks'); |
| 14 | } |
| 15 | return true; |
| 16 | } |
| 17 | return false; |
| 18 | } |
| 19 | |
| 20 | async function test ({ asyncprogressqueueworker }) { |
| 21 | await success(asyncprogressqueueworker); |
no outgoing calls
no test coverage detected