From b639fffe7fe83e78d17c1b276ca8a35eec6b9cf6 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Mon, 2 Mar 2026 11:24:41 +0100 Subject: [PATCH] fix(ci): use TEST_URL in check-forms.ts for E2E consistency --- apps/web/scripts/check-forms.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/scripts/check-forms.ts b/apps/web/scripts/check-forms.ts index a3df7bb..999054f 100644 --- a/apps/web/scripts/check-forms.ts +++ b/apps/web/scripts/check-forms.ts @@ -1,6 +1,6 @@ import puppeteer from "puppeteer"; -const targetUrl = process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000"; +const targetUrl = process.env.TEST_URL || "http://localhost:3000"; const gatekeeperPassword = process.env.GATEKEEPER_PASSWORD || "secret"; // Use ENV or default async function main() {