From 080e48141768333137fb0227a2e93a3f6638912d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 15 Feb 2021 23:26:06 +0100 Subject: [PATCH] Fix benchmarks run: use synchronous call. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- benchmarks/bench.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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() } -- 2.34.1