Skip to content

Commit

Permalink
Fix benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnaya committed Feb 8, 2020
1 parent 453549e commit cd2fa24
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions benchmarks/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ const suite = new Benchmark.Suite();

suite
.add(`createObjectBuffer with ${ARR_SIZE} comments`, () => {
objectBuffer.createObjectBuffer(
globalThis.externalArgs,
1e6,
objectBuffer.createObjectBuffer(globalThis.externalArgs, 1e7, {
arrOfComments
);
});
})
.on("cycle", event => {
console.log(String(event.target));
Expand Down

0 comments on commit cd2fa24

Please sign in to comment.