7 lines
122 B
TypeScript
Executable File
7 lines
122 B
TypeScript
Executable File
import nock from 'nock';
|
|
|
|
export default async () => {
|
|
nock.disableNetConnect();
|
|
nock.enableNetConnect('127.0.0.1');
|
|
};
|