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();