fix: benchmark name

This commit is contained in:
Nolan Lawson 2023-12-11 20:52:11 -08:00
parent cfd2380b3a
commit e82c503536
2 changed files with 3 additions and 3 deletions

View File

@ -26,10 +26,10 @@ for (const benchmark of benchmarks) {
],
expand: [
{
name: `${benchmarkShortName}-this-change`
name: 'this-change'
},
{
name: `${benchmarkShortName}-tip-of-tree`,
name: 'tip-of-tree',
packageVersions: {
label: 'tip-of-tree',
dependencies: {

View File

@ -27,7 +27,7 @@
"build:i18n": "node ./bin/buildI18n",
"benchmark:runtime": "cross-env PERF=1 run-s build:rollup benchmark:runtime:setup benchmark:runtime:test",
"benchmark:runtime:setup": "./bin/setup-benchmark.sh && node ./bin/setupTachometerConfigs.js",
"benchmark:runtime:test": "for config in ./test/benchmark/*.tachometer.json; do tach --config \"${config}\"; done",
"benchmark:runtime:test": "for config in ./test/benchmark/*.tachometer.json; do echo \"${config}\"; tach --config \"${config}\"; done",
"benchmark:bundlesize": "run-s build:rollup benchmark:bundle benchmark:run-bundlesize",
"benchmark:bundle": "rollup -c ./test/bundlesize/rollup.config.js",
"benchmark:memory": "run-s build:rollup benchmark:bundle && run-p --race benchmark:memory:server benchmark:memory:test",