blob: cec812c3fce46c8c6372057fb11a9c0c601130d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { it, describe, expect } from "bun:test";
describe("body-mixin-errors", () => {
it("should fail when bodyUsed", async () => {
var res = new Response("a");
expect(res.bodyUsed).toBe(false);
await res.text();
expect(res.bodyUsed).toBe(true);
try {
await res.text();
throw new Error("should not get here");
} catch (e) {
expect(e.message).toBe("Body already used");
}
});
});
|