diff --git a/scripts/benchmark.ts b/scripts/benchmark.ts index 91e8b865a..37c740131 100644 --- a/scripts/benchmark.ts +++ b/scripts/benchmark.ts @@ -201,12 +201,12 @@ function runBenchmark (options: { headers?: { [ id: string ]: string } expecter: Function }) { - const { method, path, body, expecter, headers } = options + const { method = 'GET', path, body, expecter, headers } = options return new Promise((res, rej) => { autocannon({ url: server.url + path, - method, + method: method, body, connections: 20, headers,