Skip to content

Commit

Permalink
benchmark: reduce the buffer size for blob
Browse files Browse the repository at this point in the history
PR-URL: #52548
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
  • Loading branch information
debadree25 committed Apr 17, 2024
1 parent e4c795e commit 8fa7d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/blob/blob.js
Expand Up @@ -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'],
});
Expand Down

0 comments on commit 8fa7d90

Please sign in to comment.