import { IMachineLearningRepository } from '../src'; export const newMachineLearningRepositoryMock = (): jest.Mocked => { return { classifyImage: jest.fn(), encodeImage: jest.fn(), encodeText: jest.fn(), detectFaces: jest.fn(), }; };