import { CanvasUtilitiesService, } from './../helpers/services/index'; export const initCanvasUtilitiesService = (jest) => () => ({ getImageWithUrl: jest.fn(), getScaledEnclosingQuad: jest.fn().mockReturnValue({ bottomLeft: {}, bottomRight: {}, topLeft: {}, topRight: {}, }), toCanvasCoordinateSystem: jest.fn(), toPrintImageCoordinateSystem: jest.fn(), } as CanvasUtilitiesService);