From 44be33e92caa0fcec58adc03ca0819c030eba7d8 Mon Sep 17 00:00:00 2001 From: abhishektiwari003 Date: Thu, 23 Apr 2026 17:52:24 +0530 Subject: [PATCH] changes testing env --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index c533b74..3525f4c 100644 --- a/app.js +++ b/app.js @@ -8,7 +8,7 @@ const server = http.createServer((req, res) => { if (req.method === "GET" && parsedUrl.pathname === "/") { const key = parsedUrl.searchParams.get("key"); const response = key - ? { message: "added to the response", value: key } + ? { message: "added to the response", value: process.env.Test } : { message: "key query param not found" }; res.writeHead(200, { "Content-Type": "application/json" });