export const createMockResponse = ( data: T, options?: Partial ): Response => ({ ok: true, json: () => Promise.resolve(data), headers: new Headers({ 'Content-type': 'application/json', }), ...options, }) as Response