node/benchmark/test_runner/global-concurrent-tests.js
Raz Luvaton f458e5b573
benchmark: add benchmarks for the test_runner
PR-URL: https://github.com/nodejs/node/pull/48931
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
2023-07-29 18:07:44 +00:00

47 lines
947 B
JavaScript

'use strict';
const common = require('../common');
const { it } = require('node:test');
const bench = common.createBenchmark(main, {
n: [100, 1000, 1e4],
type: ['sync', 'async'],
}, {
// We don't want to test the reporter here
flags: ['--test-reporter=./benchmark/fixtures/empty-test-reporter.js'],
});
async function run(n, type) {
const promises = new Array(n);
// eslint-disable-next-line no-unused-vars
let avoidV8Optimization;
switch (type) {
case 'sync': {
for (let i = 0; i < n; i++) {
promises[i] = it(`${i}`, () => {
avoidV8Optimization = i;
});
}
break;
}
case 'async':
for (let i = 0; i < n; i++) {
promises[i] = it(`${i}`, async () => {
avoidV8Optimization = i;
});
}
break;
}
await Promise.all(promises);
}
function main({ n, type }) {
bench.start();
run(n, type).then(() => {
bench.end(n);
});
}