summaryrefslogtreecommitdiff
path: root/test/benchmark
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2019-04-04 16:05:49 -0700
committerRich Trott <rtrott@gmail.com>2019-04-04 22:13:56 -0700
commitc86883cfacc927c2433af9554ee103b1e6b00589 (patch)
tree49a87110596a917f68685fc0ba426459c165f63a /test/benchmark
parentf13733d12d69077c9312371a966bef11f01b2816 (diff)
downloadnode-new-c86883cfacc927c2433af9554ee103b1e6b00589.tar.gz
test: fix test-benchmark-module
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>
Diffstat (limited to 'test/benchmark')
-rw-r--r--test/benchmark/test-benchmark-module.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/benchmark/test-benchmark-module.js b/test/benchmark/test-benchmark-module.js
index d81936210c..4d49ed249c 100644
--- a/test/benchmark/test-benchmark-module.js
+++ b/test/benchmark/test-benchmark-module.js
@@ -5,7 +5,11 @@ require('../common');
const runBenchmark = require('../common/benchmark');
runBenchmark('module', [
+ 'cache=true',
+ 'dir=rel',
+ 'ext=',
+ 'fullPath=true',
'n=1',
+ 'name=/',
'useCache=true',
- 'fullPath=true'
]);