From 7b5aad47d1712d531cbf15ce21b16b9bb16bf4c9 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 13 Oct 2025 10:35:51 -0700 Subject: [PATCH] Fix: Correct README path --- scripts/run-benchmark.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-benchmark.js b/scripts/run-benchmark.js index c8afefe..a2f919d 100644 --- a/scripts/run-benchmark.js +++ b/scripts/run-benchmark.js @@ -5,7 +5,7 @@ import axios from 'axios'; import { performance } from 'perf_hooks'; const CWD = process.cwd(); -const README_PATH = path.join(CWD, 'README.md'); +const README_PATH = path.join(CWD, 'README'); const TESTS_DIR = path.join(CWD, 'tests'); const RESULTS_PATH = path.join(CWD, 'results.json');