This commit is contained in:
Dylan Conway
2025-06-11 21:08:08 -07:00
parent d6fb0482ed
commit 003e6c499d

View File

@@ -373,7 +373,7 @@ describe("Bun.file in serve routes", () => {
test.each(["hello.txt", "large.txt"])(
"concurrent requests for %s",
async filename => {
const batchSize = isWindows ? 8 : 16;
const batchSize = 16;
const iterations = 2;
async function iterate() {
@@ -391,7 +391,7 @@ describe("Bun.file in serve routes", () => {
results.forEach(result => {
expect(result.length).toBe(expected.length);
expect(result).toBe(expected);
}
});
}
for (let i = 0; i < iterations; i++) {