From c158306bb7267b3cdbe106ae320017a455b202c7 Mon Sep 17 00:00:00 2001 From: Debadree Chatterjee Date: Tue, 16 Apr 2024 00:58:58 +0530 Subject: [PATCH] benchmark: reduce the buffer size for blob --- 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'], });