1'use strict'; 2 3const common = require('../common'); 4 5if (!common.hasCrypto) 6 common.skip('missing crypto'); 7 8if (!common.enoughTestMem) 9 common.skip('Insufficient memory for async_hooks benchmark test'); 10 11const runBenchmark = require('../common/benchmark'); 12 13runBenchmark('async_hooks'); 14