diff options
author | 2022-06-20 21:35:22 -0700 | |
---|---|---|
committer | 2022-06-22 06:56:47 -0700 | |
commit | 41b03b5c4c426bd3f2a3c7c6aaf454cee11744f0 (patch) | |
tree | fd1819ed5dfbe58edfe971b7c05c2c59549b8251 /integration/bunjs-only-snippets/gc.js | |
parent | bfa5b2955533a60b2f12e6ac65d4868efcaf5222 (diff) | |
download | bun-41b03b5c4c426bd3f2a3c7c6aaf454cee11744f0.tar.gz bun-41b03b5c4c426bd3f2a3c7c6aaf454cee11744f0.tar.zst bun-41b03b5c4c426bd3f2a3c7c6aaf454cee11744f0.zip |
Cleanup tests
Diffstat (limited to 'integration/bunjs-only-snippets/gc.js')
-rw-r--r-- | integration/bunjs-only-snippets/gc.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/integration/bunjs-only-snippets/gc.js b/integration/bunjs-only-snippets/gc.js index 327b7d9a5..9212e8b76 100644 --- a/integration/bunjs-only-snippets/gc.js +++ b/integration/bunjs-only-snippets/gc.js @@ -1,4 +1,5 @@ export function gc() { + // console.trace("GC"); Bun.gc(true); } @@ -6,7 +7,7 @@ export function gc() { // so that the reference-counting logic is exercised export function gcTick(trace = false) { trace && console.trace(""); - + // console.trace("hello"); gc(); return new Promise((resolve) => { setTimeout(resolve, 0); |