mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
test(ext/fetch): fix test in release mode (#17125)
This commit is contained in:
parent
43b6390629
commit
d1f6b51990
1 changed files with 4 additions and 2 deletions
|
@ -1837,9 +1837,11 @@ Deno.test(
|
|||
const server = (async () => {
|
||||
const conn = await listener.accept();
|
||||
listener.close();
|
||||
const buf = new Uint8Array(160);
|
||||
const buf = new Uint8Array(256);
|
||||
const n = await conn.read(buf);
|
||||
assertEquals(n, 160); // this is the request headers + first body chunk
|
||||
const data = new TextDecoder().decode(buf.subarray(0, n!)); // this is the request headers + first body chunk
|
||||
assert(data.startsWith("POST / HTTP/1.1\r\n"));
|
||||
assert(data.endsWith("1\r\na\r\n"));
|
||||
const n2 = await conn.read(buf);
|
||||
assertEquals(n2, 6); // this is the second body chunk
|
||||
const n3 = await conn.read(buf);
|
||||
|
|
Loading…
Reference in a new issue