Skip to content

Commit

Permalink
chore: rename results file
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken committed Sep 16, 2024
1 parent e49e024 commit 5e1474a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ tasks:
- func: run custom benchmarks
- command: perf.send
params:
file: src/results.json
file: src/customBenchmarkResults.json
- name: run-spec-benchmarks
commands:
- func: fetch source
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ docs/public
.nvmrc

benchmarks.json
results.json
customBenchmarkResults.json
2 changes: 1 addition & 1 deletion test/bench/custom/main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ suite
metrics: [{ name: 'ops_per_sec', value: bench.hz }]
}));
console.log(util.inspect(data, { depth: Infinity, colors: true }));
fs.writeFileSync('results.json', JSON.stringify(data), 'utf8');
fs.writeFileSync('customBenchmarkResults.json', JSON.stringify(data), 'utf8');
})
.run();

0 comments on commit 5e1474a

Please sign in to comment.