From 405896a3afd9920cebdb9bfd1e9918bfd8bfe448 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 17 Sep 2023 18:19:03 +0200 Subject: [PATCH] perf: name internal benchmark properly MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- benchmarks/benchmarks-utils.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/benchmarks-utils.mjs b/benchmarks/benchmarks-utils.mjs index 1d5ad240..b3f326b7 100644 --- a/benchmarks/benchmarks-utils.mjs +++ b/benchmarks/benchmarks-utils.mjs @@ -100,7 +100,7 @@ export const runPoolifierPoolBenchmark = async ( Measurements.elu ]) { suite.add( - `${name}|${workerChoiceStrategy}|${measurement}|${ + `${name} with ${workerChoiceStrategy}, with ${measurement} and ${ enableTasksQueue ? 'with' : 'without' } tasks queue`, async () => { @@ -129,7 +129,7 @@ export const runPoolifierPoolBenchmark = async ( } } else { suite.add( - `${name}|${workerChoiceStrategy}|${ + `${name} with ${workerChoiceStrategy} and ${ enableTasksQueue ? 'with' : 'without' } tasks queue`, async () => { -- 2.34.1