fix(ext/node): add stub for AsyncResource#asyncId() (#23372)

Ref https://github.com/denoland/deno/issues/23263
This commit is contained in:
Divy Srivastava 2024-04-15 18:24:42 +05:30 committed by GitHub
parent 1835b4f061
commit f36a8951a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View file

@ -125,3 +125,8 @@ Deno.test(async function bind() {
assertEquals(await deferred.promise, null);
});
Deno.test(function asyncResourceStub() {
const resource = new AsyncResource("dbquery");
assert(typeof resource.asyncId() === "number");
});