Skip to content

Commit 5e1474a

Browse files
committed
chore: rename results file
1 parent e49e024 commit 5e1474a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ tasks:
267267
- func: run custom benchmarks
268268
- command: perf.send
269269
params:
270-
file: src/results.json
270+
file: src/customBenchmarkResults.json
271271
- name: run-spec-benchmarks
272272
commands:
273273
- func: fetch source

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ docs/public
3333
.nvmrc
3434

3535
benchmarks.json
36-
results.json
36+
customBenchmarkResults.json

test/bench/custom/main.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ suite
3434
metrics: [{ name: 'ops_per_sec', value: bench.hz }]
3535
}));
3636
console.log(util.inspect(data, { depth: Infinity, colors: true }));
37-
fs.writeFileSync('results.json', JSON.stringify(data), 'utf8');
37+
fs.writeFileSync('customBenchmarkResults.json', JSON.stringify(data), 'utf8');
3838
})
3939
.run();

0 commit comments

Comments
 (0)