mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 16:22:29 +00:00

Added parallel test benchmark for es PR-URL: https://github.com/nodejs/node/pull/16076 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
19 lines
392 B
JavaScript
19 lines
392 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const runBenchmark = require('../common/benchmark');
|
|
|
|
runBenchmark('es',
|
|
[
|
|
'method=',
|
|
'millions=0.000001',
|
|
'count=1',
|
|
'context=null',
|
|
'rest=0',
|
|
'mode=',
|
|
'n=1',
|
|
'encoding=ascii',
|
|
'size=1e1'
|
|
]);
|