diff options
Diffstat (limited to 'benchmark/index.js')
-rwxr-xr-x | benchmark/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/benchmark/index.js b/benchmark/index.js index 6ac76759c..c05fafefa 100755 --- a/benchmark/index.js +++ b/benchmark/index.js @@ -12,6 +12,7 @@ astro-benchmark <command> [options] Command [empty] Run all benchmarks memory Run build memory and speed test + render Run rendering speed test server-stress Run server stress test Options @@ -24,6 +25,7 @@ Options const commandName = args._[0]; const benchmarks = { memory: () => import('./bench/memory.js'), + 'render': () => import('./bench/render.js'), 'server-stress': () => import('./bench/server-stress.js'), }; |