()
| 9 | async_hooks.createHook({ init: () => {} }).enable(); |
| 10 | |
| 11 | async function main() { |
| 12 | const initialAsyncId = async_hooks.executionAsyncId(); |
| 13 | await 0; |
| 14 | assert.notStrictEqual(async_hooks.executionAsyncId(), initialAsyncId); |
| 15 | } |
| 16 | |
| 17 | main().then(common.mustCall()); |
no outgoing calls
no test coverage detected
searching dependent graphs…