From 1a69e88ea0eaf51249df06060c6786681183f5e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Z=C3=BCnd?= Date: Fri, 5 Mar 2021 12:56:36 +0100 Subject: [PATCH] Re-apply lower budget after benchmark runner has been updated --- benchmarks/runtime.bench.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/runtime.bench.js b/benchmarks/runtime.bench.js index 9906f5a..94f7609 100644 --- a/benchmarks/runtime.bench.js +++ b/benchmarks/runtime.bench.js @@ -86,7 +86,7 @@ function lintManyFilesWithAllRecommendedRules({ numberOfFiles }) { describe('runtime', () => { it('should not take longer as the defined budget to lint many files with the recommended config', () => { const nodeVersionMultiplier = getNodeVersionMultiplier(); - const budget = 80000000 / cpuSpeed * nodeVersionMultiplier; + const budget = 70000000 / cpuSpeed * nodeVersionMultiplier; const { medianDuration } = runBenchmark(() => { lintManyFilesWithAllRecommendedRules({ numberOfFiles: 350 });