1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-02-02 07:01:30 -08:00
n8n/packages/cli/test/setup.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
122 B
TypeScript
Raw Normal View History

import nock from 'nock';
export default async () => {
nock.disableNetConnect();
nock.enableNetConnect('127.0.0.1');
};