Skip to content

Commit 0d414db

Browse files
committed
fixup! benchmark: adjust assert runtimes
1 parent 6d35bb9 commit 0d414db

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

benchmark/assert/deepequal-typedarrays.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ const bench = common.createBenchmark(main, {
1616
'notDeepEqual',
1717
],
1818
len: [1e2, 5e3],
19+
}, {
20+
combinationFilter(p) {
21+
return p.strict === 1 ||
22+
p.type !== 'Float32Array' ||
23+
p.len === 1e2;
24+
},
1925
});
2026

2127
function main({ type, n, len, method, strict }) {

0 commit comments

Comments
 (0)