> For the complete documentation index, see [llms.txt](https://docs-v2.hypertest.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-v2.hypertest.co/user-guides/node.js-sdk/unmocking-passing-through.md).

# Unmocking/Passing Through

{% hint style="danger" %}
UnMocked Calls will be called as-is in both RECORD and REPLAY modes. Any network calls make inside the  callback of `executeUnmocked()`  would be actually made&#x20;
{% endhint %}

```typescript

import * as htSdk from '@hypertestco/node-sdk';
/**
   .. code normally instrumented by hypertest
**/

// old code
// const axiosResponse = await axios.post('https://myexampleurl.com/api/v1/sample', {"key":"value"});


// new code
const axiosResponse = await htSdk.executeUnmocked(async () => {
  // Anything called here is not captured/mocked by hypertest in any mode
  
  await axios.post('https://myexampleurl.com/api/v1/sample', {"key":"value"});
  // the above http call would not be captured by hypertest during record mode.
  // it would actually hit myexampleurl.com in replay mode.
  
})
```
