diff --git a/test/js/bun/http/fetch-file-upload.test.ts b/test/js/bun/http/fetch-file-upload.test.ts index 197470b9d5..f79bd5526c 100644 --- a/test/js/bun/http/fetch-file-upload.test.ts +++ b/test/js/bun/http/fetch-file-upload.test.ts @@ -138,6 +138,8 @@ test("uploads roundtrip with sendfile()", async () => { require("fs").writeFileSync(path, hugeTxt); const server = Bun.serve({ + port: 0, + development: false, maxRequestBodySize: 1024 * 1024 * 1024 * 8, async fetch(req) { var count = 0;