0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/benchmark/misc/util-extend-vs-object-assign.js
Rich Trott 5d4c5d3f71 test: run misc benchmark only once in tests
Prevent misc benchmark files from running more than one benchmark
during tests.

PR-URL: https://github.com/nodejs/node/pull/21046
Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
2018-06-19 10:37:36 -07:00

35 lines
777 B
JavaScript

'use strict';
const common = require('../common.js');
const util = require('util');
const bench = common.createBenchmark(main, {
type: ['extend', 'assign'],
n: [10e4]
});
function main({ n, type }) {
// Default value for tests.
if (type === '')
type = 'extend';
let fn;
if (type === 'extend') {
fn = util._extend;
} else if (type === 'assign') {
fn = Object.assign;
}
// Force-optimize the method to test so that the benchmark doesn't
// get disrupted by the optimizer kicking in halfway through.
for (var i = 0; i < type.length * 10; i += 1)
fn({}, process.env);
const obj = new Proxy({}, { set: function(a, b, c) { return true; } });
bench.start();
for (var j = 0; j < n; j += 1)
fn(obj, process.env);
bench.end(n);
}