mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

PR-URL: https://github.com/nodejs/node/pull/54904 Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
27 lines
670 B
JavaScript
27 lines
670 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const path = require('path');
|
|
const assert = require('node:assert');
|
|
|
|
|
|
const js = path.resolve(__dirname, '../fixtures/strip-types-benchmark.js');
|
|
const ts = path.resolve(__dirname, '../fixtures/strip-types-benchmark.ts');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
filepath: [ts, js],
|
|
n: [1e4],
|
|
}, {
|
|
flags: ['--experimental-strip-types', '--disable-warning=ExperimentalWarning'],
|
|
});
|
|
|
|
async function main({ n, filepath }) {
|
|
let output;
|
|
bench.start();
|
|
for (let i = 0; i < n; i++) {
|
|
const { result } = await import(`${filepath}?${i}`);
|
|
output = result;
|
|
}
|
|
bench.end(n);
|
|
assert.ok(output);
|
|
}
|