changes testing env

This commit is contained in:
Abhishek Test Tiwari 2026-04-23 17:54:38 +05:30
parent 44be33e92c
commit cb4b9a0764

5
app.js
View File

@ -8,7 +8,10 @@ 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: process.env.Test }
? {
message: "added to the response",
value: process.env[key] ?? "env not found",
}
: { message: "key query param not found" };
res.writeHead(200, { "Content-Type": "application/json" });