mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
ci: Block all external network calls in tests (no-changelog) (#4930)
* setup nock to prevent tests from making any external requests * mock all calls to posthog sdk
This commit is contained in:
committed by
GitHub
parent
2964458191
commit
d5b06ab3d6
6
packages/cli/test/setup.ts
Normal file
6
packages/cli/test/setup.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import nock from 'nock';
|
||||
|
||||
export default async () => {
|
||||
nock.disableNetConnect();
|
||||
nock.enableNetConnect('127.0.0.1');
|
||||
};
|
||||
Reference in New Issue
Block a user