From a9c0c20d1c519087a496a850776918b0522ac14e Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Mon, 19 Dec 2022 15:18:14 +0100 Subject: [PATCH] test(ext/fetch): fix test in release mode (#17125) --- cli/tests/unit/fetch_test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cli/tests/unit/fetch_test.ts b/cli/tests/unit/fetch_test.ts index 7035fe4445..b755e8ec93 100644 --- a/cli/tests/unit/fetch_test.ts +++ b/cli/tests/unit/fetch_test.ts @@ -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);