diff options
-rw-r--r-- | test/js/node/async_hooks/async_hooks.node.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/node/async_hooks/async_hooks.node.test.ts b/test/js/node/async_hooks/async_hooks.node.test.ts index 107c58a8c..3d6183948 100644 --- a/test/js/node/async_hooks/async_hooks.node.test.ts +++ b/test/js/node/async_hooks/async_hooks.node.test.ts @@ -1,7 +1,7 @@ import { AsyncLocalStorage } from "async_hooks"; import assert from "assert"; -test("node async_hooks.AsyncLocalStorage enable disable", async () => { +test("node async_hooks.AsyncLocalStorage enable disable", async done => { const asyncLocalStorage = new AsyncLocalStorage(); asyncLocalStorage.run(new Map(), () => { |