in test-utils/mock-response.ts [64:73]
export function getMockResponseStreaming(
filename: string,
chunkLength: number = 20,
): Partial<Response> {
const fullText = fs.readFileSync(join(mockResponseDir, filename), "utf-8");
return {
body: getChunkedStream(fullText, chunkLength),
};
}