forked from LeenkxTeam/Kmake
14 lines
225 B
JavaScript
14 lines
225 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
// Flags: --expose-gc
|
||
|
|
|
||
|
|
require('../common');
|
||
|
|
const assert = require('assert');
|
||
|
|
|
||
|
|
const w = new globalThis.WeakRef({});
|
||
|
|
|
||
|
|
setTimeout(() => {
|
||
|
|
globalThis.gc();
|
||
|
|
assert.strictEqual(w.deref(), undefined);
|
||
|
|
}, 200);
|