mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
212a9724d5
Refs: https://github.com/nodejs/performance/issues/114 PR-URL: https://github.com/nodejs/node/pull/50586 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.enoughTestMem)
|
|
common.skip('Insufficient memory for Websocket benchmark test');
|
|
|
|
const runBenchmark = require('../common/benchmark');
|
|
|
|
runBenchmark('websocket', { NODEJS_BENCHMARK_ZERO_ALLOWED: 1 });
|