From 5026338b4e09bb7a2333441175707e5f4b60b569 Mon Sep 17 00:00:00 2001 From: Ev Haus Date: Fri, 15 Mar 2024 23:33:15 -0700 Subject: [PATCH] Test --- setup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.js b/setup.js index 6c72594..4f77007 100644 --- a/setup.js +++ b/setup.js @@ -14,7 +14,7 @@ const main = async () => { const benchmarks = await getBenchmarks(BENCHMARKS_DIR); benchmarks.forEach((benchmark) => { const BENCHMARK_DIR = path.join(BENCHMARKS_DIR, benchmark, 'tests'); - Array.from(new Array(2)).forEach((_, i) => { + Array.from(new Array(5)).forEach((_, i) => { const REPLICA_DIR = path.join(BENCHMARK_DIR, `replica${i + 1}`); execSync(`rm -rf ${REPLICA_DIR}`) execSync(`cp -r ${path.join(BENCHMARK_DIR, 'original')} ${REPLICA_DIR}`)