aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/benchmark.ts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/benchmark.ts')
-rw-r--r--scripts/benchmark.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/benchmark.ts b/scripts/benchmark.ts
index 5dcf9b01b..c29b9abcd 100644
--- a/scripts/benchmark.ts
+++ b/scripts/benchmark.ts
@@ -1,7 +1,7 @@
1import { registerTSPaths } from '../server/helpers/register-ts-paths' 1import { registerTSPaths } from '../server/helpers/register-ts-paths'
2registerTSPaths() 2registerTSPaths()
3 3
4import * as autocannon from 'autocannon' 4import autocannon, { printResult } from 'autocannon'
5import { writeJson } from 'fs-extra' 5import { writeJson } from 'fs-extra'
6import { createSingleServer, killallServers, PeerTubeServer, setAccessTokensToServers } from '@shared/extra-utils' 6import { createSingleServer, killallServers, PeerTubeServer, setAccessTokensToServers } from '@shared/extra-utils'
7import { Video, VideoPrivacy } from '@shared/models' 7import { Video, VideoPrivacy } from '@shared/models'
@@ -149,7 +149,7 @@ async function run () {
149 Object.assign(testResult, { title: test.title, path: test.path }) 149 Object.assign(testResult, { title: test.title, path: test.path })
150 finalResult.push(testResult) 150 finalResult.push(testResult)
151 151
152 console.log(autocannon.printResult(testResult)) 152 console.log(printResult(testResult))
153 } 153 }
154 154
155 if (outfile) await writeJson(outfile, finalResult) 155 if (outfile) await writeJson(outfile, finalResult)