diff options
author | 2023-07-20 21:13:11 -0700 | |
---|---|---|
committer | 2023-07-20 21:13:11 -0700 | |
commit | 218958dbd119b7216a1934abe55b13419e4e6ade (patch) | |
tree | 1749aa3da20a8850f58bb8e68c6a1ac919ec0d78 | |
parent | 1c6e464a6800b50163140475e8c83195105cc2a8 (diff) | |
download | bun-218958dbd119b7216a1934abe55b13419e4e6ade.tar.gz bun-218958dbd119b7216a1934abe55b13419e4e6ade.tar.zst bun-218958dbd119b7216a1934abe55b13419e4e6ade.zip |
Update async_hooks.node.test.ts
-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(), () => { |