mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 02:06:12 +00:00

test-benchmark-string_decoder was timing out in CI. Reduce the run time by sending appropriate options such that each benchmark file only runs one combination of options. PR-URL: https://github.com/nodejs/node/pull/16118 Reviewed-By: Refael Ackermann <refack@gmail.com>
11 lines
270 B
JavaScript
11 lines
270 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const runBenchmark = require('../common/benchmark');
|
|
|
|
runBenchmark('string_decoder', ['chunk=16',
|
|
'encoding=utf8',
|
|
'inlen=32',
|
|
'n=1']);
|