From 35643c18c003cf64248b0522ba93dfa163d926a7 Mon Sep 17 00:00:00 2001 From: Debadree Chatterjee Date: Thu, 18 Apr 2024 01:03:44 +0530 Subject: [PATCH] benchmark: reduce the buffer size for blob PR-URL: https://github.com/nodejs/node/pull/52548 Reviewed-By: Yagiz Nizipli Reviewed-By: Benjamin Gruenbaum --- benchmark/blob/blob.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/blob/blob.js b/benchmark/blob/blob.js index 4a79a87d27deba..83e58007dd58e9 100644 --- a/benchmark/blob/blob.js +++ b/benchmark/blob/blob.js @@ -3,7 +3,7 @@ const common = require('../common.js'); const { Blob } = require('buffer'); const bench = common.createBenchmark(main, { - bytes: [128, 1024, 1024 ** 2], + bytes: [128, 1024, 8192], n: [1e3], operation: ['text', 'arrayBuffer'], });