From 022767028e0f427208246e3221c578388c352e1c Mon Sep 17 00:00:00 2001 From: Rafael Gonzaga Date: Sun, 15 Sep 2024 13:57:10 -0300 Subject: [PATCH] benchmark: --no-warnings to avoid DEP/ExpWarn log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/54928 Reviewed-By: Vinícius Lourenço Claro Cardoso Reviewed-By: Filip Skokan --- benchmark/module/module-loader.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/module/module-loader.js b/benchmark/module/module-loader.js index a885207ff6393a..0b7700c10aa111 100644 --- a/benchmark/module/module-loader.js +++ b/benchmark/module/module-loader.js @@ -16,7 +16,7 @@ const bench = common.createBenchmark(main, { files: [5e2], n: [1, 1e3], cache: ['true', 'false'], -}); +}, { flags: '--no-warnings' }); function main({ n, name, cache, files, dir }) { tmpdir.refresh();