(content: string)
| 15 | }); |
| 16 | |
| 17 | function writeBatch(content: string): string { |
| 18 | const p = join(tmpDir, "batch.jsonl"); |
| 19 | writeFileSync(p, content, "utf8"); |
| 20 | return p; |
| 21 | } |
| 22 | |
| 23 | describe("runWithConcurrencyLimit", () => { |
| 24 | it("preserves input order in the output array regardless of completion order", async () => { |
no outgoing calls
no test coverage detected