From a772eb93635a55f72bcd820a17ed14df3f3ce587 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Sun, 4 Jan 2026 11:41:40 -0500 Subject: [PATCH] Add blog post to performance test suite --- scripts/perf-test.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/perf-test.ts b/scripts/perf-test.ts index 2e5ba99..b37c487 100644 --- a/scripts/perf-test.ts +++ b/scripts/perf-test.ts @@ -64,13 +64,17 @@ const TEST_PAGES: PageTestConfig[] = [ { name: "Home", path: "/" }, { name: "About", path: "/about" }, { name: "Blog Index", path: "/blog" }, + { name: "Blog Post", path: "/blog/A_Journey_in_Self_Hosting" }, { name: "Resume", path: "/resume" }, { name: "Contact", path: "/contact" } ]; -// Add blog post path if provided +// Add additional blog post path if provided if (process.env.TEST_BLOG_POST) { - TEST_PAGES.push({ name: "Blog Post", path: process.env.TEST_BLOG_POST }); + TEST_PAGES.push({ + name: "Custom Blog Post", + path: process.env.TEST_BLOG_POST + }); } async function collectPerformanceMetrics(