This commit is contained in:
pfg
2025-06-06 18:56:07 -07:00
parent 37a21c51b8
commit 596c8cbe70

View File

@@ -208,7 +208,11 @@ test('AbortSignal.timeout() does not prevent the signal from being collected', a
}
await sleep(10);
globalThis.gc();
if(typeof Bun !== "undefined") {
Bun.gc(true);
}else{
globalThis.gc();
}
strictEqual(ref.deref(), undefined);
});