mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
import nock from 'nock';
|
|
|
|
export default async () => {
|
|
nock.disableNetConnect();
|
|
|
|
nock.emitter.on('no match', (req) => {
|
|
console.error('No mock for network request: ', req);
|
|
});
|
|
};
|