From: Jérôme Benoit Date: Mon, 15 Feb 2021 22:26:06 +0000 (+0100) Subject: Fix benchmarks run: use synchronous call. X-Git-Tag: v2.0.0-beta.2~19^2 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=080e48141768333137fb0227a2e93a3f6638912d;p=poolifier.git Fix benchmarks run: use synchronous call. Signed-off-by: Jérôme Benoit --- diff --git a/benchmarks/bench.js b/benchmarks/bench.js index b2091613..f8d93381 100644 --- a/benchmarks/bench.js +++ b/benchmarks/bench.js @@ -43,6 +43,5 @@ async function test () { // eslint-disable-next-line no-process-exit process.exit() }) - // run async - .run({ async: true }) + .run() }