runtipi/packages/system-api/__mocks__/internal-ip.ts
2022-08-01 18:21:02 +02:00

11 lines
237 B
TypeScript

import { faker } from '@faker-js/faker';
const internalIp: { v4: typeof v4Mock } = jest.genMockFromModule('internal-ip');
const v4Mock = () => {
return faker.internet.ipv4();
};
internalIp.v4 = v4Mock;
module.exports = internalIp;