diff options
| author | 2023-02-28 00:11:11 -0800 | |
|---|---|---|
| committer | 2023-02-28 00:12:32 -0800 | |
| commit | 31389b49063a59fa66ab39e595f2ab3339af97c0 (patch) | |
| tree | 3cdf93e0e7f0b1cab290f20bd7f437c327e1933e /test/bun.js/body-stream.test.ts | |
| parent | d93d1013a6dce4aabbdd9fb6a12901daeaa51886 (diff) | |
| download | bun-31389b49063a59fa66ab39e595f2ab3339af97c0.tar.gz bun-31389b49063a59fa66ab39e595f2ab3339af97c0.tar.zst bun-31389b49063a59fa66ab39e595f2ab3339af97c0.zip | |
Make response.body `null` only when user explicitly passes null/undefined
Diffstat (limited to '')
| -rw-r--r-- | test/bun.js/body-stream.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bun.js/body-stream.test.ts b/test/bun.js/body-stream.test.ts index 9a68ad3bc..1cd932ed9 100644 --- a/test/bun.js/body-stream.test.ts +++ b/test/bun.js/body-stream.test.ts @@ -3,7 +3,7 @@ import { file, gc, serve, ServeOptions } from "bun"; import { afterAll, afterEach, describe, expect, it, test } from "bun:test"; import { readFileSync } from "fs"; -var port = 4021; +var port = 0; { const BodyMixin = [ |
