1'use strict'; 2 3const common = require('../common'); 4 5if (!common.enoughTestMem) 6 common.skip('Insufficient memory for HTTP benchmark test'); 7 8// Because the http benchmarks use hardcoded ports, this should be in sequential 9// rather than parallel to make sure it does not conflict with tests that choose 10// random available ports. 11 12const runBenchmark = require('../common/benchmark'); 13 14runBenchmark('http', { NODEJS_BENCHMARK_ZERO_ALLOWED: 1 }); 15