Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPolo committed Mar 1, 2023
1 parent fa9a04b commit d1fe917
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/perf/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ describe('perf', () => {
// Run Perf
const downloadBandwidth = await client.measureDownloadBandwidth(remoteComponents.peerId, 10n << 20n)
// eslint-disable-next-line no-console
console.log('Download bandwidth: ', downloadBandwidth >> 10, ' kiB/s')
console.log('Download bandwidth: ', downloadBandwidth >> 10n, ' kiB/s')

const uploadBandwidth = await client.measureDownloadBandwidth(remoteComponents.peerId, 10n << 20n)
// eslint-disable-next-line no-console
console.log('Upload bandwidth: ', uploadBandwidth >> 10, ' kiB/s')
console.log('Upload bandwidth: ', uploadBandwidth >> 10n, ' kiB/s')
})
})

0 comments on commit d1fe917

Please sign in to comment.