node/test/addons/heap-profiler/test.js

13 lines
231 B
JavaScript
Raw Normal View History

'use strict';
const binding = require('./build/Release/binding');
// Create an AsyncWrap object.
const timer = setTimeout(function() {}, 1);
timer.unref();
// Stress-test the heap profiler.
binding.test();
clearTimeout(timer);