Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
EvHaus committed Mar 16, 2024
1 parent 2a937d7 commit 5026338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`)
Expand Down

0 comments on commit 5026338

Please sign in to comment.