import { HttpResponse } from '@angular/common/http'; export const initMockResponse = (jest) => (body: any = [] ) => { const responseOptions = { body: JSON.stringify(body), headers: null, json: jest.fn(() => body), merge: null, status: 200, url: null, }; return new HttpResponse(responseOptions); };