From 8cf35db27f5eb6c110a722f1cadd43222ece68a5 Mon Sep 17 00:00:00 2001 From: Vishal Myla Date: Tue, 4 Apr 2023 10:58:01 +0530 Subject: [PATCH] fix: no response Signed-off-by: Vishal Myla --- integrations/node-fetch/require.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/node-fetch/require.ts b/integrations/node-fetch/require.ts index 9e19ae7..80b67b8 100644 --- a/integrations/node-fetch/require.ts +++ b/integrations/node-fetch/require.ts @@ -43,7 +43,7 @@ export function wrappedNodeFetch(fetch: any) { getExecutionContext().context == undefined ) { console.error("keploy context is not present to mock dependencies"); - return; + return fetchFunc.apply(this, [url, options]); } const ctx = getExecutionContext().context; let resp = new fetch.Response();