mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
c86883cfac
A recent commit broke test-benchmark-module. This fixes it. PR-URL: https://github.com/nodejs/node/pull/27094 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Bryan English <bryan@bryanenglish.com>
16 lines
219 B
JavaScript
16 lines
219 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
|
|
const runBenchmark = require('../common/benchmark');
|
|
|
|
runBenchmark('module', [
|
|
'cache=true',
|
|
'dir=rel',
|
|
'ext=',
|
|
'fullPath=true',
|
|
'n=1',
|
|
'name=/',
|
|
'useCache=true',
|
|
]);
|